Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
hi all, i created a measure for my stacked line chart but i currently facing some issue in using the measure function. So i have a measure that looks like this
Amount =
DIVIDE(
SUM('table1'[FP]),
SUM('table1'[Amount])
)
however, since some of the year are 0 for both FP and Amount field, the stacked chart churns out as screenshot below.
may i know if how should i rewrite the measure formula to make the stacked line chart link from 14 to 16? as i know that 0 divided by 0 is error.
Thanks!
Solved! Go to Solution.
Hi @profilewatercli
Please use
Amount =
DIVIDE(
SUM('table1'[FP]),
SUM('table1'[Amount]),
0
)
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
Hi @profilewatercli
Please use
Amount =
DIVIDE(
SUM('table1'[FP]),
SUM('table1'[Amount]),
0
)
Let me know if that works for you
If your requirement is solved, please mark THIS ANSWER as SOLUTION ✔️ and help other users find the solution quickly. Please hit the Thumbs Up 👍 button if this comment helps you.
Thanks
Pijush
Linkedin
Proud to be a Super User! | |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
99 | |
69 | |
46 | |
39 | |
33 |
User | Count |
---|---|
163 | |
110 | |
61 | |
51 | |
40 |