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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

Change column if days condition.

Hey guys,

 

I have two columns

 

One is the daily amount and the other is the monthly total amount

 

Example

Daily Amount = 1000

Monthly total amount = 26000

 

I do a calculation that if the maximum date is less than the 28th day it makes the daily value multiplied by the number of days, but if it is the 28th or 29th or 30th or 31st it returns the value of the Monthly total amount

 

Example:

February 25 = 1000*25 = 25000

February 28 = 26000

 

Follow the calculation below

Meta Prod. Diária GCA Card = IF(MAX('Calendário'[Day])=31 || MAX('Calendário'[Day])=30 || MAX('Calendário'[Day])=29 || MAX('Calendário'[Day])=28 ,[Meta Produção GCA],[Meta Prod. Diária GCA Card_1])
 
 
However I need this to work in 2 months or more.
 
Example Date Slicer:
January,1 to February,25
January = Monthly total amount + February = Daily Amount * 25
 
how do i do it dynamically?
 
1 REPLY 1
lbendlin
Super User
Super User

One way would be to add a calculated column that uses your calculation, and then use that column together with the date slicer.  

 

If, however, you need to use a measure then this is a lot more complicated.

 

So - please clarify what you mean by "dynamically" 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors