Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

TOTAL in calculated dimensions

Hi,

I'm trying to use this expression:

count(total<TIMESTAMP,COUNTRY> distinct ID)

The problem is that I want to use it in a dashboard whose dimesions are TIMESTAMP and a calculated dimension COUNTRY-CITY

Do you know how can I get the result of that expression using calculated dimensions?,

maybe calculating the dimension in the script? (I don't know how to do it)

Thanks,

David

1 Reply
prieper
Master II
Master II

Would always recommend to create a dimension in the script, like

LOAD

*,

COUNTRY & '-' & CITY    AS CITY_id

FROM ....;

HTH
Peter