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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
CalgaryYYC
New Member

Multiply a constant number by days in month from date table

Looking for help in multiplying a single constant number by the days in the month of the year. 

example:

constant 150 

January = 31 days 

result = 150 * 31 = 4,650

 

next month (based on date setting) 

Constant 150 

February = 28 

Result = 150 * 28 = 4,200

 

thank you! 

1 ACCEPTED SOLUTION
gmsamborn
Super User
Super User

Hi @CalgaryYYC 

 

 

Measure =
	CALCULATE(
		COUNTROWS( 'Date' ),
		ALLSELECTED( 'Date'[YearMonth] )
	) * 150

 

 

Let me know if you have any questions.

View solution in original post

3 REPLIES 3
v-binbinyu-msft
Community Support
Community Support

Hi @CalgaryYYC ,

Could you tell me if your problem has been solved? If it is, kindly Accept it as the solution. More people will benefit from it. Or if you are still confused about it, please feel free to let me know.

 

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

CalgaryYYC
New Member

Thank you!

gmsamborn
Super User
Super User

Hi @CalgaryYYC 

 

 

Measure =
	CALCULATE(
		COUNTROWS( 'Date' ),
		ALLSELECTED( 'Date'[YearMonth] )
	) * 150

 

 

Let me know if you have any questions.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.