The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi,
I have a growth calulated measure but the values are coming as nan and Infinity
below is the sample data
The dax to calulate is
Solved! Go to Solution.
Hi @Anonymous
You are getting NAN and Infinity because you are dividing 0 by 0 and 747 by blank ( where blanks it considers as zero)..
You will have to change your formula.
or you can try creating 2 quick measures.
- 1st measure for subtraction SUM and Gross Revenue
- 2nd to divide the above measure with Gross Revenue.
Add in table to get somehting like this.
Let me know if this helps .
Thanks,
Tejaswi
use the DIVIDE function instead of "/"
This should be the solution!
Hi @Anonymous
You are getting NAN and Infinity because you are dividing 0 by 0 and 747 by blank ( where blanks it considers as zero)..
You will have to change your formula.
or you can try creating 2 quick measures.
- 1st measure for subtraction SUM and Gross Revenue
- 2nd to divide the above measure with Gross Revenue.
Add in table to get somehting like this.
Let me know if this helps .
Thanks,
Tejaswi
It worked with the Divide. Thanks