Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I made a dashboard using data from a SQL database.
I set up the dashboard so that it functions perfectly well. No errors in any calculations, etc.
When I refersh my ldata, my entire dashboard is in a mess. Errors show up where there were no errors previously. All my DAX generated tables fail due to errors.
Works prior to refreshing:
Recent Scores = SUMMARIZE('Recent Score','Recent Score'[LOCALE],"% Of 3's",ROUND(100*COUNTROWS(filter('Recent Score','Recent Score'[Score]=3))/COUNT('Recent Score'[LOCALE]),1))
- "An argument of function 'ROUND' has the wrong data type or the result is too large or too small." - this occurs to 10 DAX tables when which aggregate the main table
The odd thing, is previously it worked with no problems.
Any suggestions are very welcome
hi, @Anonymous
Could you please tell me if your problem has been solved? If it is, could you please mark the helpful replies as Answered?
Best Regards,
Lin
HI, @Anonymous
Try to make it like this ROUND(IFERROR(...,0))
Recent Scores =
SUMMARIZE (
'Recent Score',
'Recent Score'[LOCALE],
"% Of 3's", ROUND (
IFERROR (
100
* COUNTROWS ( FILTER ( 'Recent Score', 'Recent Score'[Score] = 3 ) )
/ COUNT ( 'Recent Score'[LOCALE] ),
0
),
1
)
)
Best Regards,
Lin
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 46 | |
| 41 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 70 | |
| 69 | |
| 32 | |
| 27 | |
| 26 |