The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 each time a new day is added by the filter "between".
Example:
01.01.2022 - 01.01.2022
Workload = sum(table1[performance]) * 6
*increase the value by 6 as another day is added with the slicer*.
01.01.2022 - 02.01.2022
Workload = sum(table1[performance]) * 12
01.01.2022 - 03.01.2022
Workload = sum(table1[performance]) * 18
01.01.2022 - 04.01.2022
.
.
.
The 6 hours should automatically increase to the 12 hours as soon as one more day is added with the filter "between". If one more day is added the value increases to 18 and on and on... It would be good if the solution was an equation.
I have already tried different possibilities but unfortunately I did not get my result. Hopefully there is someone here who could help me with this problem.
Thank you & greetings
Powerstarter
Solved! Go to Solution.
@Powerstarter Maybe:
Workload =
VAR __Min = MIN('Table'[Date])
VAR __Max = MAX('Table'[Date])
RETURN
sum(table1[performance]) * ( (__Max - __Min + 1) * 6 )
@Powerstarter Maybe:
Workload =
VAR __Min = MIN('Table'[Date])
VAR __Max = MAX('Table'[Date])
RETURN
sum(table1[performance]) * ( (__Max - __Min + 1) * 6 )
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
182 | |
81 | |
64 | |
46 | |
41 |