Forum Discussion
Add Column IF DATE AND TEXT
- 6 years ago
new column in Export Candidates
new column = if(isblank(maxx(filter('Export Actions','Export Actions' [CandidateRef] ='Export Candidates'[CandidateRef]
&& 'Export Actions'[ActionName] = "Call - Update" && 'Export Actions'[ActionDate]>= date(2020,03,01)),
'Export Actions' [CandidateRef])),"No","Yes") - 6 years ago
I suggested a column. But in case you are looking as measure. Try one of the following
maxx(filter('Export Actions','Export Actions' [CandidateRef] =related('Export Candidates'[CandidateRef]) && 'Export Actions'[ActionName] = "Call - Update" && 'Export Actions'[ActionDate]>= date(2020,03,01)), 'Export Actions' [ActionDate]) maxx(filter('Export Actions','Export Actions' [CandidateRef] =max('Export Candidates'[CandidateRef]) && 'Export Actions'[ActionName] = "Call - Update" && 'Export Actions'[ActionDate]>= date(2020,03,01)), 'Export Actions' [ActionDate]) maxx(filter('Export Actions','Export Actions'[ActionName] = "Call - Update" && 'Export Actions'[ActionDate]>= date(2020,03,01)), 'Export Actions' [ActionDate])
new column in Export Candidates
new column = if(isblank(maxx(filter('Export Actions','Export Actions' [CandidateRef] ='Export Candidates'[CandidateRef]
&& 'Export Actions'[ActionName] = "Call - Update" && 'Export Actions'[ActionDate]>= date(2020,03,01)),
'Export Actions' [CandidateRef])),"No","Yes")
- HenryJS6 years ago
Post Prodigy
Thanks amitchandak that's perfect!
How can I now add an additional column which returns (or states) the latest 'Export Actions'[ActionDate] for the most recent "Call - Update for that candidate?
So it will be a column with a date.
Relating to the most recent date the "Call - Update" occured.
Cheers! Hope you have a good weekend
- amitchandak6 years ago
Super User
HenryJS ,
Refer, if this can help
maxx(filter('Export Actions','Export Actions' [CandidateRef] ='Export Candidates'[CandidateRef] && 'Export Actions'[ActionName] = "Call - Update" && 'Export Actions'[ActionDate]>= date(2020,03,01)), 'Export Actions' [ActionDate])- HenryJS6 years ago
Post Prodigy