Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
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!
Solved! Go to Solution.
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.
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.
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.
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.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.