Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
fanninam
Creator
Creator

Number Format

Good Afternoon,

I'm trying to get this number to only show two decimal points.  With the following expression statement the number is showing as "55555.555555555"

='Revenue Per Employee: '
&
Num(Sum({$<HCOEdetail={'Revenue'}>}Actaul_Amount),'$#,##0.')/Num(Sum((EjFTE)),'$#,##0.')

1 Solution

Accepted Solutions
sunny_talwar

Try this:

='Revenue Per Employee: '
&
Num(Sum({$<HCOEdetail={'Revenue'}>}Actaul_Amount)/Sum(EjFTE), '$#,##0.00')

View solution in original post

1 Reply
sunny_talwar

Try this:

='Revenue Per Employee: '
&
Num(Sum({$<HCOEdetail={'Revenue'}>}Actaul_Amount)/Sum(EjFTE), '$#,##0.00')