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
mavbaumer15
Frequent Visitor

Data Always Loading on Report as 0

Hi, 

 

I have never seen antyhing like this before... I had created this report a long time ago and now all of sudden this week the amount column on the dataset will only show as 0.  If I got into transfrom data it shows up as expected and there's values in there.  I have tried to create a new SQL view, remove and re-add the dataset, and even a brand new report but the same result everytime. I ended up find out that it's taking the decimal places out 15+ places like it's being divided or something?

 

Has anyone seen anythign like this before in PBI desktop?

 

 Screenshot 2021-06-02 090605.pngScreenshot 2021-06-02 090537.png

1 ACCEPTED SOLUTION

I'm not seeing the same thing...so sorry about this.  I'm not sure what happened with our data but I think I have found the issue and am fixing it in the backend. Thanks for looking at this and sorry for wasting your time. 

View solution in original post

9 REPLIES 9
jdbuchanan71
Super User
Super User

Not at all, glad you were able to find a fix!

jdbuchanan71
Super User
Super User

It seems like the total is summing to 0?  I exported to excel and the sum of the REPORTINGCURRENCYAMOUNT is 0

2021-06-02_9-17-16.png

so I added a Sign column to your table to split it up to check.

 

Sign = 
SWITCH(
    TRUE(),
    VendorInvoiceTransactionsWithGLDetail[REPORTINGCURRENCYAMOUNT] < 0, "-",
    VendorInvoiceTransactionsWithGLDetail[REPORTINGCURRENCYAMOUNT] > 0, "+",
    "0"
)

 

 

This is the measure in the values

 

Measure = SUM(VendorInvoiceTransactionsWithGLDetail[REPORTINGCURRENCYAMOUNT])

 

with the sign column on the columns.

2021-06-02_9-06-53.png

 

I'm not seeing the same thing...so sorry about this.  I'm not sure what happened with our data but I think I have found the issue and am fixing it in the backend. Thanks for looking at this and sorry for wasting your time. 

jdbuchanan71
Super User
Super User

Any chance you can share your .pbix file?  You can load it to OneDrive or DropBox and share the link here.

jdbuchanan71
Super User
Super User

Try writing a measure to sum the column and put that in the visual.  It's possible that the data type got switched so your aggregation on the implicit measure went from sum to first or something like that.

I just tried this and it's still showing 0.  Something I did try as well was switching the value to Don't Summarize and now I have values.  I just exported everything to excel and summed it up by vendor to make sure it's not actually netting to 0 and they are not.  I've had created 100s of PBI reports before and never seen anything like this....

jdbuchanan71
Super User
Super User

@mavbaumer15 

Are you using a measure in your display to sum the ReportingCurrencyAmount column or did you just drag the field in from the table?

Hi, no measure I'm just directly using the field from the table. 

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