Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I want to format below expression outcome Count(TestcaseId) such that if the Count(TestcaseId)>10000 then the value should be in format of 10k or else a normal number 10000. Eg if number is 12350 then number should be 12.35K else if it is 9999 then it should show 9999 only. Please help.
Try,
if(
Count(TestcaseId) >= 10000,
num( Count(TestcaseId)/10000, '#,##0.##', '.' , ',' )&' K',
num(Count(TestcaseId),'#,##0.##', '.' , ',' )
)
what you asking for which chart object in Qlik Sense ?
its for Line Graph Chart
I guess you can't.
Hello! Try something like this:
=if((Count(TestcaseId)/10000) >= 1,
num( Count(TestcaseId)/1000, '#,##0.##', '.' , ',' )&' K',
num(Count(TestcaseId),'#,##0.##', '.' , ',' )
)
This link showing K in values less than 10000 and values greater than 10k are not showing.
Try,
if(
Count(TestcaseId) >= 10000,
num( Count(TestcaseId)/10000, '#,##0.##', '.' , ',' )&' K',
num(Count(TestcaseId),'#,##0.##', '.' , ',' )
)
Try a dual value, like this
=Dual(
If(Count(TestcaseId) < 10000, Num(Count(TestcaseId)), Num(Count(TestcaseId) / 1000, '0.00K')),
Count(TestcaseId)
)
Please try with this
If(COUNT(TestcaseId) < 10000, Num(COUNT(TestcaseId)), Num(COUNT(TestcaseId) / 1000, '0.00K'))
Hello
use following Expression
if(
Count(TestcaseId) >= 10000,
num( Count(TestcaseId)/10000, '#,##0.##', '.' , ',' )&' K',
num(Count(TestcaseId),'#,##0.##', '.' , ',' )
)
Regards
Vikas