Forum Discussion
Compare only Matched Date Value
- 3 years ago
Hi,
Thank you for your feedback.
Please check the below picture and the attached file.
It is for creating a new table.
Hi,
I am not sure if I understood your question correctly, but please check the below picture and the attached pbix file.
It is for creating a new table.
New Table =
FILTER (
'Daily Price',
'Daily Price'[Date] IN DISTINCT ( 'Monday Price'[Date] )
)
- Anonymous3 years agoNot applicable
Hi Jihwan_Kim Thank you for your effort.
I have tried this in Google Sheet and what I expected would be as below.But I am struggling to be done it in Power BI.
Do you have any other suggestions?
- Jihwan_Kim3 years ago
Super User
Hi,
Thank you for your feedback.
Please check the below picture and the attached file.
It is for creating a new table.
- Anonymous3 years agoNot applicable
Thank you for you help, Jihwan_Kim.
- Tahreem243 years ago
Super User
Anonymous You can create new table by writing this DAX code:
Table = SUMMARIZE(FILTER(DailyPriceTable,DailyPriceTable[Date]=RELATED(MondayPriceTable[Date])),DailyPriceTable[Date],DailyPriceTable[Category],"Daily Price", SUM(MondayPriceTable[Price]),"Monday Price",SUM(MondayPriceTable[Price]))- Anonymous3 years agoNot applicable
Tahreem24 Thank you for your effort.
The RELATED() doesn't work in mine.