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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Calculated Column - Return value if two columns matches

Hi!

 

I have a problem that seems simple but I just can't seem to solve it.

I'm trying to return Hours to a Calculated Column if Start Date and Date matches as in the example below:

 

Skärmklipp.PNG

 

I've tried both CALCULATE and IF but both returns errors:

 

 

CALCULATE(SUM([Hours]);[Date] = [Start Date])

IF([Start Date] = [Date];[Hours];"")

 

Help would be much appreciated!

 

Marcus

 

2 ACCEPTED SOLUTIONS
Anonymous
Not applicable

Hi

 

Can you try this ?

New Column = IF(Table1[Start Date] = table1[Date],[Hours])

Let me know if you see any issues.

 

 

Thanks

Raj

View solution in original post

Anonymous
Not applicable

@Anonymous

 

I think the solution by @Anonymous would work. You might be getting the error in your IF statement because you are setting the ELSE condition as "". This will probably cause an error because [Hours] is a number and "" is text. You can either use rajendran's version or you can switch the "" with BLANK()

 

Hope this helps,

Parker

View solution in original post

5 REPLIES 5
Anonymous
Not applicable

Hi

 

Can you try this ?

New Column = IF(Table1[Start Date] = table1[Date],[Hours])

Let me know if you see any issues.

 

 

Thanks

Raj

Anonymous
Not applicable

Thanks for the reply but that is basically the same IF-formula that I have been trying and I receive an error.

Does this work for you?

 

Regards

Marcus

Anonymous
Not applicable

@Anonymous

 

I think the solution by @Anonymous would work. You might be getting the error in your IF statement because you are setting the ELSE condition as "". This will probably cause an error because [Hours] is a number and "" is text. You can either use rajendran's version or you can switch the "" with BLANK()

 

Hope this helps,

Parker

Anonymous
Not applicable

 

@Anonymous did work leaving the last argument blank instead of "".

Thank you @Anonymous for the clarification 🙂

 

Best regards,

Marcus

@Anonymousexactly what is the error you're getting? I have a feeling you're trying to add this as a measure and not a column...





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.

Top Solution Authors