Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Anonymous
Not applicable

PowerBI Visual - Error

Hi People

I'm encountering this error while displaying my visual. Seems like error show only when I do select all.

jeremycjjj_0-1594709108974.png

jeremycjjj_1-1594709243303.png

Maybe my DAX measures are too much for system to handle it. Any other way to code the dax below? I'm using date intelligent for KPI.

Measure 1

TotalWOthismonth =

VAR Category = FILTER(swWorkProcFleet_Cat1,swWorkProcFleet_Cat1[Description] IN {"Critical Equipment","Schedule Maint","Survey","Shore Service"})

VAR MinDate = DATE(YEAR(Today()),1,1)

VAR TotalOverdue = CALCULATE([#Datecompleted],Category,
DATESBETWEEN('Calendar 1'[Date],MinDate,TODAY()-1))

VAR OverduePreviousMonths =
CALCULATE([#Datecompleted],Category,FILTER(swEqptHistory,[Current Month] = 0))


VAR firstDayMonth = DATE(Year(Today()), Month(Today()),1)

VAR TotalWOthismonth = CALCULATE([# Total WO],Category,
DATESBETWEEN('Calendar 1'[Date],firstDayMonth,Today()))
Return
TotalWOthismonth + OverduePreviousMonths

Measure 2 
% Critical Eqpt =
DIVIDE([#Critical No.],[TotalWOthismonth])



 

1 REPLY 1
v-diye-msft
Community Support
Community Support

Hi @Anonymous 

 

As the info prompted in the tab header, "The query is too large, consider removing unused columns, add visual filters, or reducing the number of string type columns."

 

Please check Note of this article:If a table has too many values, consider converting it to a matrix and/or using drilldown. The maximum data points a table will display is 3,500.Here are some tips about Power BI performance for your reference.

 

I'd suggest creating views of the SQL Server tables used in the report. The views restricted the number of rows and columns considerably. We can used these views as the datasources for the report and it refreshes online without any issues. 

 

Community Support Team _ Dina Ye
If this post helps, then please consider Accept it as the solution to help the other members find it more
quickly.

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.