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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Saide
Frequent Visitor

PowerBI refresh from Excel data source crashes on the only column that has a formula

Good morning All,

 

I have a PowerBI project with data from an Excel stored on SharePoint. Here and then it happens that no data is loaded after refresh into PowerBI. It is after someone has updated values in the file . It seems to be caused by the only column that has a formula (=HLOOKUP($A$1;KPI_ACTIVE_COU;ROW()-1;FALSE). I get Error in the query: DataFormat.Error: Invalid cell value 'VALUE!'

 

The only working fix I found so far was to unhide all the columns. I use the following macro for that:

 

The only solution I found so far that works each time I don't get the data is to go to the source file and unhide all columns using VBA macro that was there in the file:

 

Sub Unhide_All()
'
' Unhide all cells and columns
Dim PageName As Variant
Dim index As Integer
i = 2
Do While i < 20
PageName = Sheets("Column").Range("A" & i).Value
Sheets(PageName).Select
Range("A1").Select
ActiveWindow.FreezePanes = False
Columns("A:N").Select
Selection.EntireColumn.Hidden = False
Columns("A:N").EntireColumn.AutoFit

i = i + 1
Loop
End Sub

 

I do not know why it works but it works. I tried to replicate the issue by hiding/grouping/freezing some columns as I saw that when it was not working some columns/rows were grouped, hidden or frozen etc. and since there is unpivot step in the query that was my suspect no. 1 but the load was always working. Nevertheless if it does not work the above macro to unhide all solves it 🤔

 

In other words how to find the source of this DataFormat.Error: Invalid cell value 'VALUE!' error and how to fix it?

 

Anyone had similar problem maybe? I would appreciate any help.

Thank you!

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Saide 

 

The cause is probably from the formula (=HLOOKUP($A$1;KPI_ACTIVE_COU;ROW()-1;FALSE). From the document of HLOOKUP function, you will see the following argument. Please check where the formula is used. If it is used on the first row, ROW() will return 1, then ROW()-1 will return 0. While 0 is less than 1, which may return this error value. 

vjingzhang_0-1669605431508.png

 

ROW function - Microsoft Support

HLOOKUP function - Microsoft Support

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

View solution in original post

1 REPLY 1
v-jingzhang
Community Support
Community Support

Hi @Saide 

 

The cause is probably from the formula (=HLOOKUP($A$1;KPI_ACTIVE_COU;ROW()-1;FALSE). From the document of HLOOKUP function, you will see the following argument. Please check where the formula is used. If it is used on the first row, ROW() will return 1, then ROW()-1 will return 0. While 0 is less than 1, which may return this error value. 

vjingzhang_0-1669605431508.png

 

ROW function - Microsoft Support

HLOOKUP function - Microsoft Support

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors
Top Kudoed Authors