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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
PBIViz_2024
Advocate I
Advocate I

Direct Query-Calculate function-No values

Hi All,

 

I have PBI Dashbaord developed initially using import and I am trying to do the same using Direct query.howver below function works well in import but no values resulting in direct query.

Total Tonnage-Latest =
Var Latest_time=CALCULATE(max(Table1[datetime_val]),all(Table1))
Var _output=CALCULATE(sum(Table1[value]),Table1[datetime_val]=Latest_time,ALLSELECTED(Dimensiontable1[category]))
Return _output
 
Please let me know if any idea on this.
 
Regards,
 
2 REPLIES 2
Anonymous
Not applicable

Hi @PBIViz_2024 

Pleasre try the following Dax:

Total Tonnage-Latest =
VAR Latest_time = CALCULATE(MAXX(ALL(Table1), Table1[datetime_val]))
VAR _output =
CALCULATE(
SUM(Table1[value]),
FILTER(
Table1,
Table1[datetime_val] = Latest_time
),
ALLSELECTED(Dimensiontable1[category])
)
RETURN _output


 

 

 

 

 

Best Regards,

Jayleny

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Fowmy
Super User
Super User

@PBIViz_2024 

You code looks okay, check if any other filters affecting the calcultion on the report. Try to run a Evaluate Table1 in DAX Query View

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors