Forum Discussion
Anonymous
6 years agoNot applicable
Dynamic Calculated Column based on Slicer
I am trying to update a value in a calculated column using a slicer selection, to allow the user to see the effect of allowing a greater time to time to pay. I have set up a seperate table contai...
Anonymous
6 years agoNot applicable
I think this is also part of my problem, I need to consider the days to pay for each order seperately, so I think my calculation below is probably incorrect paysegcheck = IF(SUM(FinalImport[DAYS TO PAY]) - [Interval Value] <0, 1, 0)
sturlaws
6 years agoResident Rockstar
When using a measure in the FILTER-function, https://dax.guide/filter/, the measure is evaluated for each row in the table which is filtered. So [paysegcheck] is calculated for each row, if that was what you were worried about.
- Anonymous6 years agoNot applicable
so if I wanted to just show on a chart two lines one for actual days to pay and one for days to pay - my slicer value, what would be the best way to do this?