Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Learnerr
Contributor III
Contributor III

Text Object Number Format

Hi experts,

I am trying to show a calculation within my text object but the representation of the result is soooo long. How can i minimiza its length please:

 

=Sum( {<SATIŞ_YIL2={"2021"}>} (Yükseklik*Genislik*Uzunluk/1000000000)* Num ( FATURALANAN_MIKTAR,  '#.##0,##', ',' , '.' ))

#numbers#format#

Thanks,

 

Best Regards.

Labels (4)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

=Num(Sum( {<SATIŞ_YIL2={"2021"}>} Yükseklik*Genislik*Uzunluk* FATURALANAN_MIKTAR)/ 1000000000 , '#.##0,##', ',' , '.' )

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

3 Replies
rwunderlich
MVP
MVP

The Num() function goes outside the Sum(). Like

Num(Sum(...), '#.##0,##')

-Rob

Learnerr
Contributor III
Contributor III
Author

Hello,

Thanks for your answer. I put num at the beginning of my block yet nothing has changed unfortunately.

vinieme12
Champion III
Champion III

=Num(Sum( {<SATIŞ_YIL2={"2021"}>} Yükseklik*Genislik*Uzunluk* FATURALANAN_MIKTAR)/ 1000000000 , '#.##0,##', ',' , '.' )

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.