March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hello everyone,
I'm trying to count how many candidates were never touched in a Vacancy since they applied. I have 2 date/time columns that can tell me that. One is the Candidate Submitted Date (Candidate_SubmittedDate) and the other is Moved to Date (Candidate_CurrentFolder_SetOn). If they match, then the candidate was never touched.
The way I would do it is like the formula below, but given the fact that these fields contain DATE and TIME they will never match as the system does the 2 processes withing a few seconds apart. Is there a way to compare only the DATES in a Measure? Or I need to go in Power Query and change Type or split columns?
Solved! Go to Solution.
Hi @Anonymous,
you can use following formula
_Candidate_Never_Moved =
SUMX (
report,
IF (
[Candidate_SubmittedDate].DATE = [Candidate_CurrentFolder_SetOn].DATE,
1,
0
)
)
Found the issue it's [Candidate_SubmittedDate].[Date]
Thank you very much!
Highly appreciated,
Ovidiu
Hi @Anonymous,
you can use following formula
_Candidate_Never_Moved =
SUMX (
report,
IF (
[Candidate_SubmittedDate].DATE = [Candidate_CurrentFolder_SetOn].DATE,
1,
0
)
)
Found the issue it's [Candidate_SubmittedDate].[Date]
Thank you very much!
Highly appreciated,
Ovidiu
Tried to reverse the fields... They are both DATE/TIME, i don't know why the 2nd appears as grey.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
133 | |
90 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
70 | |
68 |