Forum Discussion
Powerstarter
3 years agoNew Member
Increase multiplication factor by given value every day
Good evening everybody, I have a small problem about multiplication in Power BI. I have a given value and I want to multiply it by the factor 6. However, I want the value 6 to increase by ea...
- 3 years ago
Powerstarter Maybe:
Workload = VAR __Min = MIN('Table'[Date]) VAR __Max = MAX('Table'[Date]) RETURN sum(table1[performance]) * ( (__Max - __Min + 1) * 6 )
Greg_Deckler
Community Champion
3 years agoPowerstarter Maybe:
Workload =
VAR __Min = MIN('Table'[Date])
VAR __Max = MAX('Table'[Date])
RETURN
sum(table1[performance]) * ( (__Max - __Min + 1) * 6 )