0
votes

I created the following measure and would like to add 30 minutes to it. How can I do it?

Worked Time Each Day = DATEDIFF([Clinician Min Time Per Day],[Clinician Max Time Per Day],MINUTE)
1

1 Answers

1
votes

You can you DateAdd function to add 30 minutes to your max time

DateAdd([Clinician Max Time Per Day], 30, Minutes )

Substitute this in you measure of datediff where you are using max time