Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Next up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now

Reply
Powerstarter
New 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 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

1 ACCEPTED SOLUTION
Greg_Deckler
Community Champion
Community Champion

@Powerstarter Maybe:

Workload = 
  VAR __Min = MIN('Table'[Date])
  VAR __Max = MAX('Table'[Date])
RETURN
  sum(table1[performance]) *  ( (__Max - __Min + 1) * 6 )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

1 REPLY 1
Greg_Deckler
Community Champion
Community Champion

@Powerstarter Maybe:

Workload = 
  VAR __Min = MIN('Table'[Date])
  VAR __Max = MAX('Table'[Date])
RETURN
  sum(table1[performance]) *  ( (__Max - __Min + 1) * 6 )


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.