Hi,
Based on one of the EDNA courses, I have made a profit and loss account with a template. Everything is working fine except one thing. For some customers, not all topics are applicable.
So if a customers does not have for example Exploitatiekosten, it should not be shown.
Is there a way to hide these rows?
So for example, these rows in yellow should not be shown as they have no values:
The row headers are coming from a disconnected table if i am not wrong. Since this table is not being filtered directly i doubt you can hide them but you can replace blanks as 0 .
Can you supply a small sample file because I checked your other PBIX file (here) and when “Show items with no data” is disabled, all blank rows are hidden.
The issue is caused by the FORMAT() function. When that returns a ‘blank’ it is actually returning an empty text string. So I added an IF statement checking for that “” and then returning a BLANK instead that resolves the issue.