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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
cbirch
Frequent Visitor

Summarize functions returns date/time from a pure date column

I'm trying to join two columns together but I keep getting the "No common join columns detected" error. The columns are both named "Month" and have all the same values and should both be type 'date'. But when I look at the elements in the join, something looks off.  MarketPrices[Month] is 'date' type, however when I select it in the summarize function, it gets returned as 'date/time'. (The MarketPrices[Month] column is passed through a few tables before that, but all of them are set to 'date' type, and the original data type from the source query is also just 'date'.) 

 

Is this causing the issue with the join? If so, how do I force the summarize function to return just the regular date? 

 

SUMMARIZE(
	FILTER(
        MarketPrices,
        MarketPrices[Date] >= DATE(2022, 3, 1)
    ),
    MarketPrices[Month],
    "Price", SUM(MarketPrices[Product]) / SUM(MarketPrices[Demand])
)

 

cbirch_1-1724204814745.png

 

 

1 ACCEPTED SOLUTION
Ritaf1983
Super User
Super User

Hi @cbirch 

You can modify the data type of your calculated column from UX :

Ritaf1983_0-1724208977869.png

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

View solution in original post

1 REPLY 1
Ritaf1983
Super User
Super User

Hi @cbirch 

You can modify the data type of your calculated column from UX :

Ritaf1983_0-1724208977869.png

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

Regards,
Rita Fainshtein | Microsoft MVP
https://www.linkedin.com/in/rita-fainshtein/
Blog : https://www.madeiradata.com/profile/ritaf/profile

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.