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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
New_be
Helper V
Helper V

Calculated column to compare String & Date

Hi everyone,


Refer to the subject, i have one question on how to make a condition for date that based on day
For example in this case, i have a days column & a date_off column seperately. Days column in text type while date_off column is a date type.

 

I want to make a condition like, return date_off if days <> "Friday". This column will return date_off for every days except from "Friday". Thanks in advance

q_1.PNG

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @New_be ,

 

I think you can create a calculated column using the below DAX:

 

column = if(Days = "Friday",DAY_OFF,BLANK())

 

Please try.

Aiolos Zhao

View solution in original post

5 REPLIES 5
V-lianl-msft
Community Support
Community Support

Hi @New_be ,

 

Try this calculated column

column = IF(Days <> "Friday",DAY_OFF,BLANK())

 

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

Hi @New_be ,

 

Is this problem sloved?
If not, please let me know.

 

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

Sorry i forgot to accept one of the answer as a solution. Thanks for your follow up 😊

amitchandak
Super User
Super User

@New_be , Try like

 

Weekday =WeekDay Name = FORMAT([Date],"dddd")

 

if(Weekday = WEEKDAY([Date],2) =5, "DAY_OFF",Blank())

 

if([Weekday] ="Friday", "DAY_OFF",Blank())

 

Any Weekday Week

ttps://community.powerbi.com/t5/Community-Blog/Any-Weekday-Week-Decoding-Date-and-Calendar-2-5-Power-BI-Turning/ba-p/1187482

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hi @New_be ,

 

I think you can create a calculated column using the below DAX:

 

column = if(Days = "Friday",DAY_OFF,BLANK())

 

Please try.

Aiolos Zhao

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.