Forum Discussion
Get data from a column by comparing the date in a different table
I have Combine2020 = column A: values are "Yes" and "No". Column B:"Created Date", Column C="ID".
Table B: Has "Published date" and "ID"
ID is 1-many relationship from Table B to Table A.
This is what I have: Yes = CALCULATE(Count('Combine2020'[Is Useful?]),FILTER('Combine2020','Combine2020'[Is Useful?]="Yes"). This will give be count of "Yes" for unique ID.
"Is Useful?" has values of "Yes" an "No".
Now I want to modify the above calculation to get the count when the Created Date is before the Published date.
Thanks
Anonymous , Try like
CALCULATE(Count('Combine2020'[Is Useful?]),FILTER('Combine2020','Combine2020'[Is Useful?]="Yes" && 'Combine2020'[Created Date]<=related('Table B:'[Published date])))
Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.
3 Replies
- amitchandak
Super User
Anonymous , Try like
CALCULATE(Count('Combine2020'[Is Useful?]),FILTER('Combine2020','Combine2020'[Is Useful?]="Yes" && 'Combine2020'[Created Date]<=related('Table B:'[Published date])))
Please provide your feedback comments and advice for new videos
Tutorial Series Dax Vs SQL Direct Query PBI Tips
Appreciate your Kudos.- AnonymousNot applicable
Thanks Amit.
- AnonymousNot applicable
Hello Amit:
If I want to get the values from [Created date] for just 3 months from [Published date], how would I change DAX?
Thanks