Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Is there a way to have a single cell in Qlik like below where I can can include a dimension with only value. When I use Text and Image I was not able to include dimension inside.
You can do in many different ways.
Below is one way , Is this what you are looking for ?
Text Object Edit Mode :
View Mode :
Thanks
Vikram
you can achieve this using getfieldselections() function in a KPI.
=getfieldselections(Dimension_Name)
Regards,
Aditya
I have noticed that, but you have only option to add a measure here correct, for example if the dimensions have multiple values comma separated, would it work?
Then for your requirement , you can change the expression to follows
CONCAT(DISTINCT Dim1,', ')
or
CONCAT(DISTINCT AGGR(Dim1,Dim1) ,', ')
thanks
Vikram