Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
ck95
Contributor II
Contributor II

Measure in Dimension

Hello,

I have this expression:

IF(aggr(Text(count({1<[datum]={">=$(=date(today()-365,'YYYY-MM-DD'))"}>}distinct [oid])), [customer_uid2]) > '1', 'excisting customer', 'new customer')

This expression is working in Set Analysis in Qlik Sense as an measure but I need this as a dimension.

Can anyone help me?

 

Labels (1)
1 Reply
Rohan
Specialist
Specialist

Hi, try this:

custmap:

Mapping Load

[customer_uid2], 

'existing customer' as Flag

where no_of_orders>1;

load 

[customer_uid2],

count(distinct oid) as no_of_orders

from Data where datum>=$(=date(today()-365,'YYYY-MM-DD')) group by [customer_uid2];

 

Data:

Load *,

applymap('custmap',[customer_uid2],'new customer') as newFlag

from Data;