Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Friends,
I have created calculated dimension in straight table and check the suppress null check box and it is working fine in QV desktop, but when i push into QV access point it is not working. Please help me if any thing i missed here
Below is my calculated dimension.
If(Len(date) >=1,null(), 'null')
Thanks,
Venakt
Do you have a different QlikView version on server box? That might cause it as some previous versions of QlikView had problem with calculated dimensions and suppressing null values.
Hi Sunny,
I am using same version in qlikview and server box both are November 2017 SR1
I am not entirely sure why this is not working the same way
Can you try this and tell us which works or not?
If(Len(date) >=1,'NA', 'null')
Hi Anil,
As per my requirement i need to put hidden if any values are there in date field and need to show only null values in report that is the reason i write a expression like if(len(date)>=1, null(),'null'). as per you suggested expression i can not convert values in to nulls it can covet values into 'NA'.
I even not sure about the behavior. But, Null() returns '-'. To achieve same this? if(len(date)>=1, '-','null')
Long ago - I've read about Null() which not working in Access point. If i get that will definitely share it with you.