Forum Discussion
ad_nan
9 years agoRegular Visitor
dimension in calculated measure
Hi, Can we use dimension in calculated measures? Also while creating a cal. measure i got an error : A single value for column 'dimension_name' in table 'table_name' cannot be determined...
- 9 years ago
According to the error that you are getting and that you are doing this in a measure, then you need to use an aggregator like:
Measure = if(MAX('table'[dim_name]) = "dim1",((if(MAX('table'[dim_name]) = "dim2",'table'[measure]))/(if(MAX('table'[dim_name]) = "dim3",'table'[measure])))/12,5)
Ivric
8 years agoFrequent Visitor
I'm trying to do some calcualtion by creating a new Measure in a dimension named Programs on power bi desktop
if 'Programs'[StartDate] is blank then pick 'Programs'[AltDate] else pick 'Programs'[StartDate]
but in the measure i created under Programs I could access the date columns in my DAX.
I'm connecting power bi live to ssas tabular cube.
Thanks,