Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I am attempting to write a measure and would appreciate assistance.
I have a table with columns for
Submitted Date
Due Date
I have added a column with the measure written to determine if the items were submitted on time.
Number of Contacts Required
Number of Contacts Made
I am attempting to write a measure which will calculate the sum of Number of Contacts Made only if the item was on time.
Is there a way to do this?
Thanks
Solved! Go to Solution.
You can create a measure like
Contacts made on time =
CALCULATE (
SUM ( 'Table'[Number of contacts made] ),
'Table'[On time] = "on time"
)
@jeffr6596 Yes, you can achieve this by creating a measure that sums the "Number of Contacts Made" only for the items that were submitted on time
DAX
SumOfContactsMadeOnTime =
CALCULATE(
SUM('YourTable'[Number of Contacts Made]),
'YourTable'[ON TIME] = "On Time"
)
Proud to be a Super User! |
|
@jeffr6596 Yes, you can achieve this by creating a measure that sums the "Number of Contacts Made" only for the items that were submitted on time
DAX
SumOfContactsMadeOnTime =
CALCULATE(
SUM('YourTable'[Number of Contacts Made]),
'YourTable'[ON TIME] = "On Time"
)
Proud to be a Super User! |
|
You can create a measure like
Contacts made on time =
CALCULATE (
SUM ( 'Table'[Number of contacts made] ),
'Table'[On time] = "on time"
)
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 |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 23 | |
| 20 | |
| 18 | |
| 14 | |
| 14 |