Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a horizontal straight table. There are two dimensions, Year and Month. These are the column headings.
The rows I want to show are Open Work Items and Closed Work Items.
I have filters for Sr Manager, Manager, Employee.
If no filters are selected, all columns are shown, because there is always data every month. However, when I select down to the manager and employee level, columns start to disappear. For example, If an employee started 3 months ago they will not have any data prior to that month, and so the columns have no data to display and so they disappear.
I need to display all months and years ALWAYS. Is there any way to do this?
Thanks
Thanks for all your help Digvijay. Here’s how I resolved it. I added an expression that always has data when no selection is made and used set analysis to ignore the selections =Count({1<[Field]… and then hid all the columns I don’t want to display using the Hide Column radio button on the Presentation tab
Can you share the visual of your table? if you got some measures, try adding '+Sum({1}0)' in your measures. It helps in some situations so worth trying.
Thanks Digvijay for the reply. I tried your solution. All it did was add a month that doesn't yet exist in the data (August 2022). I have also tried a lot things to try to add a one to the data.
If(Count([Field])=0,1,Count([Field]))
If(IsNull(Count([Field])),1,Count([Field]))
Etc.
I also tried many combinations of checking and unchecking
No luck so far. Maybe I just haven’t hit on the right combination.
Is there really no-way in Qlikview to build a table that just shows all the columns (Dimensions) even if they are zero? That seems crazy to me.
Do you have master Calendar table having all the Month Years present in that? That will help to show dimension values even if its not present in your fact table.
Thanks Digvijay. I'll try that. I'll get back to you.
Thanks for all your help Digvijay. Here’s how I resolved it. I added an expression that always has data when no selection is made and used set analysis to ignore the selections =Count({1<[Field]… and then hid all the columns I don’t want to display using the Hide Column radio button on the Presentation tab