Forum Discussion
popescu
7 years agoNew Member
Table row conditional Formula
Currently, I have next measure which gives the expected result for the rows 1801.00 and 0801.00: "Formula 1" CALCULATE(IF([Invoiced to date]<[Work Budget]; IF([Invoiced to date]<[Commitments]...
- 7 years ago
As per need create the that cloumn as measure:
Measure=sum(Project budget lines'[Cost line])
Later
Measure 1= if(Measure in condtion, Formula1, Formula2)
hthota
7 years agoResolver III
Create a measure as given below:
Measure= if(Project budget lines'[Cost line] IN {"1801.00","0801.00"},Formula1,Formula2)
popescu
7 years agoNew Member
Hi,
thanks, makes sense, however I cannot select/set the Table field (Project budget lines'[Cost line] ) in the measure. It's only coming up with other measures, and not with table values?