Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Experts
Need a calculated column measure to return 1 if the Closk Start Date is between the SubmissionStartDate and SubmissionEndDate...
Clock Start Date SubmissionStartDate SubmissionEndDate
02/08/2022 01/08/2022 31/08/2022
New Column return either 1 or 0, in this case it lies between the two dates
Solved! Go to Solution.
I think you are looking for a calculated column like:
Column =
IF(
Start Date > SubmissionStartDate && Start Date < SubmissionEndDate ||
Start Date < SubmissionStartDate && Start Date > SubmissionEndDate,
1,
0
)
I think you are looking for a calculated column like:
Column =
IF(
Start Date > SubmissionStartDate && Start Date < SubmissionEndDate ||
Start Date < SubmissionStartDate && Start Date > SubmissionEndDate,
1,
0
)
stop on sir
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |