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,
I have a report that get data from Dataset.
For certain visuals, i got the error message like below.
I copy paste the same visual from the report to the dataset, and it works. Takes time to run the query but works.
Any ideas on solutions?
I try to make the measure more simple but it is not evident.
I am guessing that it is due to the time out on query running, if so how can i change it?
Thanks for any help.
Hi,
Here are the measures:
PortfNbDerived =
CALCULATE(
DISTINCTCOUNTNOBLANK(Data[Cust_Nb]) + 0 //when blank show 0
, LASTDATE(DimCalendar[Date_EN]) // is table of balance
, FILTER(Data,[Amnt] > 0) // when the amnt is > 0, [Amnt] is a measure, from the balance data table too
, KEEPFILTERS(Data[IndCurrent] = TRUE()) // a filter
)
PortfNbAverage =
AVERAGEX (
VALUES ( DimCalendar[Month_FFFF_MM] )
, [PortfNbDerived]
)
Measures are not complicated.
It returns the result on Desktop without problem, but the performance is bad.
Once publish the data model to the Service, then the measure no longer works on the report when"Get data from dataset". It shows the error message like in the post.
Any idea?
Thank you.