Forum Discussion
ROKRI
6 years agoHelper I
Error loading table but query editor shows no error rows
Hello, When I refresh my table in PBI desktop the data loads but I get a message there are 10 errors (image 1). However, when I view in query editor, the table is empty with no error rows, only t...
- 6 years ago
Hello ROKRI
first of all I would reccomend to use this formula, instead of yours
= Table.AddColumn(#"Added Receivable Balance", "Current FY Actual ICR %", each if [FY20 Actual Direct]=0 then null else ([2020 Expenditure]-[FY20 Actual Direct])/[FY20 Actual Direct], type number)otherwise you have a mixture of data-type text and number.
In Power Query you can use the try otherwise syntax to get the errors, but I think the NaN is not covered here.
If this post helps or solves your problem, please mark it as solution (to help other users find useful content and to acknowledge the work of users that helped you)
Kudoes are nice too
Have fun
Jimmy
Anonymous
3 years agoNot applicable
I had this same issue and then noticed I had declared the data type in my new column creation step. When I removed the ", type number" and then added a separate Changed Data Type step, I got no errors.