Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi Experts,
I have some problem/question.
I've got measure which highlights max value on the column chart:
but this measure gives me different results dependent on the table mode (Direct Query and Import):
Do you have any suggestions?
Thank you in advance.
Solved! Go to Solution.
@Greg_Deckler ok, I've changed the measure, but it doesn't help.
I found something strange (for me), there is a difference (very small) beetwen measure and created table:
I used ROUND to deal with this problem and it works. But why there is a difference?
@Anonymous I'm guessing it has something to do with precision and significant digits but really hard to say. DAX overview - DAX | Microsoft Learn
That said, I have no idea what [% nieobecnosci] is in terms of its formula.
@Anonymous Try getting rid of your CALCULATEDTABLE, you don't need it as you can write it as:
VAR monthlyAbscence =
ADDCOLUMNS(
SUMMARIZE(ALLSELECTED('DATA'), ...
Otherwise, you may have a situation where a related table is not in Hybrid mode and is thus affecting your imported table but not your DirectQuery table.
@Greg_Deckler ok, I've changed the measure, but it doesn't help.
I found something strange (for me), there is a difference (very small) beetwen measure and created table:
I used ROUND to deal with this problem and it works. But why there is a difference?