Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
in my expression i use num format function as per the requirement and given as properties --> format as measure expression, but when i pull the data in excel (export or download) the numbers are in text in excel. how to resolve this.
i agree if i change the format to -->number, its fine ,but in the expression i have formatted with num since i use multiple expression with if loop as per the metric selection.
example if user select metric 1 then the num be shd in % calculation , if user select metric 2 then it shd be in the 1,000 format. so in the exp i have given the num format and as per the selection the format displaying correctly in the chart, but while pulling the data in excel its in text.
can you share your expression?
not visible
if(MetricId=2,
Num( (Sum(Gross sales))/ (Sum(total(Gross sales))) ,'#,##0.0%'),
Num( Sum(Gross sales)
,'#,##0')
)
Number Format-->Measure Expression
Looks all right. I am assuming it is a user selection which determines the expression
Are you using a straight table? or pivot?
its qliksense straight table(table chart) my issue is while pulling (export data )in to excel the number are in text format in excel.
my expression works fine and good.
any updates