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

Announcements
Talend Cloud AWS EU Scheduled Outage: Starting Tues 26 May 21:00 CEST with expected completion Wed 27 May 01:00 CEST
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

Labels (1)
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