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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

table time measure

 

 

 

Hi,

 

I need Help.!

 

First of all this is my database looks like

Data base.PNG

I am ayalsis project schedule with previous revision schedule. how much the plan got changed.

 

I want to add 4 new columns. 1 for colouring red if the both dates btw 19-April and 19-Feb are not same but green.

and another for showing how many days of differency the dates have. (ex +3, -4...) for start and finish.

 The stardard date will be  19-Apr.

 

thanks,

Table measure colour.PNG

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

You may create two calculate columns using DAX like pattern below:

Color =
IF (
Table[Plan Start] >= DATE ( 2019, 2, 1 )
&& Table[Plan Start] <= DATE ( 2019, 4, 30 ),
"Red",
"Green"
)

Days =
DATEDIFF ( Table[Plan Start], Table[Plan Finish], DAY )

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

@Anonymous ,

 

You may create two calculate columns using DAX like pattern below:

Color =
IF (
Table[Plan Start] >= DATE ( 2019, 2, 1 )
&& Table[Plan Start] <= DATE ( 2019, 4, 30 ),
"Red",
"Green"
)

Days =
DATEDIFF ( Table[Plan Start], Table[Plan Finish], DAY )

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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

Top Solution Authors