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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Maradh
Helper I
Helper I

Power BI service showing wrong values

Hi,


I don't know if it's a bug or not but im having a lot of trouble trying to make specific report (with the specific OneDrive update) on Power BI service.

My goal is to show the most recent value by personal Id but i find it to be impossible with what Power BI web service has to offer, here is some screenshots :

 

data not resume.PNG

In the screenshot above, i display all number of rocks and you can see what each number of rocks has for Date and hour (most recent)


data sum.PNG

In this one, i display the sum of all number of rocks

 

data min.PNG

This one is the minimum number of rocks

 

data max.PNG

And finally, this screenshot with the max number of rocks but with the wrong Date and hour (most recent) which is the same date/hour as the minimum value

I don't know, maybe Power BI web service has too much restriction, can anyone help ?

6 REPLIES 6
Greg_Deckler
Community Champion
Community Champion

Most recent value generaly goes something like this:

 

Measure =
  VAR __ID = MAX([Personal ID])
  VAR __MostRecent = MAXX(FILTER('Table',[Personal ID] = __ID),[Date and hour (most recent)])
RETURN
  MAXX(FILTER('Table',[Personal ID] = __ID && [Date and hour (most recent)] = __MostRecent),[Number of rocks])


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Yeah but the problem is that i can't create measure since i can't work on Power BI desktop for this specific case because i need to use the Onedrive update (the one which is set with only one file in Onedrive business)

 

So the way i try to get the value i want is through filters or data fields like not resuming, sum, max, min, most recent, etc. But it seems it doesn't work the way it is supposed to.

Hi @Maradh ,

 

This should not be a bug, but a normal summary of the data.

You can use Web connector to connect to OneDrive, then, publish your report to Power BI Service.

For the [most recent], you may need to create a measure to return the date and hour. 

Use OneDrive for Business links in Power BI Desktop 

 

Best regards,
Lionel Chen

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

Im already using the web connector for all my other reports on Desktop to get all my data from OneDrive.

But in my case, i need the specific OneDrive refresh which can only be use with a report on Power BI Web service

 

Hi @Maradh ,

 

If you use web connector in Power BI Desktop, you still can use OneDrive refresh in Service , the model is as below. In other words, the dataset will refresh when the .xlsx/.csv files are updated.

bb10.PNG

 

Best regards,
Lionel Chen

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

Hi,

I think i get it but i don't know how to do it

 

Can you explain a bit more on how we can create that ?

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

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