Velixo Report stuck in constant #N/A state and not refreshing

Symptoms:
- Velixo workbooks are stuck in a constant state of not refreshing
- The user has attempted to clear the Local Cache
- The same issue doesn't occur with other users, suggesting it is workbook related.
- When clicking into the cell, and then clicking enter, the values appear
- You are using Velixo Classic ONLY

Troubleshooting Process
Potential Workaround 1:- Create a new worksheet in the same workbook
- Cut and paste all cells from the old worksheet to the new one
- Delete the old worksheet
Potential Workaround 2 (Advanced Users Only):
- Create a new Macro that is added to ThisWorkbook module.
- Place the below script within the sub, press F5 to launch and wait until complete
- Save the Workbook and discard the VBA Module
- Sub DeleteHiddenNames()
- Dim nm As name
- For Each nm In ActiveWorkbook.Names
- If nm.Visible = False Then
- If Left(nm.name, 3) <> "_xl" Then
- nm.Delete
- End If
- End If
- Next nm
- End Sub