Forum Discussion
Anonymous
5 years agoNot applicable
Need help with DAX Formulation for sum using equality operator Date columns
Hi, I have an input method format as shown below in the image(which is obtained through powerapps) Where the input date has a 'one to one' relationship with the dim date table Illustratio...
- 5 years ago
this code might work
Output=VAR vCurrentDate=max(dimDateTable[Date]) RETURN CALCULATE(SUM(Input[Value]),Input[Date]<=VCurrentDate)
wdx223_Daniel
Community Champion
5 years agothis code might work
Output=VAR vCurrentDate=max(dimDateTable[Date]) RETURN CALCULATE(SUM(Input[Value]),Input[Date]<=VCurrentDate)
Anonymous
5 years agoNot applicable
Thanks mate!
Worked like a charm