Forum Discussion
Calculate column
- Anonymous5 years ago
Anonymous
This dax is not correctly written. I am sure what exact your are expecting but try the correct formula below:Colonna 2 = IF(Merge1[DWH.GENNAIO] = BLANK(),
SUM(Merge1[Ricavo pesato])/CALCULATE(SUM(Merge1[DiffMese]), Filter(Merged, Merge1[MeseInizio] <= 1 && 1 <= Merge1[MeseFine])),
Merge1[DWH.GENNAIO])However, I am confuse with the <=1 and >=1, doesn't this means all numbers? This probably causes the the circular dependency.
Paul Zheng _ Community Support Team
Anonymous
This dax is not correctly written. I am sure what exact your are expecting but try the correct formula below:
Colonna 2 = IF(Merge1[DWH.GENNAIO] = BLANK(),
SUM(Merge1[Ricavo pesato])/CALCULATE(SUM(Merge1[DiffMese]), Filter(Merged, Merge1[MeseInizio] <= 1 && 1 <= Merge1[MeseFine])),
Merge1[DWH.GENNAIO])
However, I am confuse with the <=1 and >=1, doesn't this means all numbers? This probably causes the the circular dependency.
Paul Zheng _ Community Support Team