Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 (3)
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
Partner Ambassador/MVP
Partner Ambassador/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.