Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
I have a ‘Project’ dimension and it has a discount value (in percentage). My problem is I cannot use a column from a Dimension directly in a measure…
I have to do Discount x Revenue. (Usually my dimension columns have only text values, but in this case its numeric).
Is it ok to do:
Measure1: = AVERAGE(Project[Discount])
Measure 2:= Measure1*Revenue
Or how do you achieve this? (My revenue is in my FactRevenue).
Solved! Go to Solution.
You could do something like
Rev with discount = SUMX( FactRevenue, FactRevenue[Revenue] * RELATED(Project[Discount]) )
You could do something like
Rev with discount = SUMX( FactRevenue, FactRevenue[Revenue] * RELATED(Project[Discount]) )
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |