Forum Discussion
Yrstruly2021
Helper V
2 years agoAdding a Fix value to a calculation.
I am trying to add a fixed value "Interco capital returned" 678 to a dax total calculation. To get the fix value i used New CombinedAmount3 = VAR SelectedCashFlowDescription = SELECTEDVALUE...
- Anonymous2 years ago
Hi Yrstruly2021 ,
Did the above suggestions help with your scenario? if that is the case, you can consider Kudo or Accept the helpful suggestions to help others who faced similar requirements.
If these also don't help, please share more detailed information and description to help us clarify your scenario to test.
How to Get Your Question Answered Quickly
Regards,
Xiaoxin Sheng
Dangar332
Resident Rockstar
2 years agohi, Yrstruly2021
as i understood your problem you wanna try to get total as fixed value
see below as data
same problem like you total= 300 but actual is 5200
but implement measure 3 as below
Measure 3 =
IF(
ISINSCOPE('Table'[product]),
MIN('Table'[value]),
CALCULATE(sum('Table'[value]),ALL())
)