Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Purushothaman
Partner - Creator III
Partner - Creator III

Hide a null dimension but keep associated calculated measure.

Hi Experts,

I wanted to Hide a null dimension but keep associated calculated measure. How to achieve this?

Anyone, Please help!!

Purushothaman_0-1656037173922.png

Thank you!!

2 Solutions

Accepted Solutions
Bunim
Contributor III
Contributor III

if(isnull(dimention),"someText",dimention)

View solution in original post

Or
MVP
MVP

This should be automatic if your measures are written appropriately. For example,

Load * INLINE [
Dim, Measure
A, 100
B, 20
C, 50
];
Concatenate
Load * INLINE [
Measure
30];

Or_0-1656333147564.png

 

 

View solution in original post

2 Replies
Bunim
Contributor III
Contributor III

if(isnull(dimention),"someText",dimention)

Or
MVP
MVP

This should be automatic if your measures are written appropriately. For example,

Load * INLINE [
Dim, Measure
A, 100
B, 20
C, 50
];
Concatenate
Load * INLINE [
Measure
30];

Or_0-1656333147564.png