Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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