The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I am tring to count the amount of items that took <15 etc
The code I'm using is:
# Cases <15 days = CALCULATE(
COUNT(Deferrals[regardingobjectid]),
FILTER(Deferrals,
Deferrals[TimeinDeferral] = "<15"))
I'm getting this error message
Can anyone offer a suggestion to get around this?
Is there a way of doing this without using Variables?
Thanks
Solved! Go to Solution.
@ArchStanton , seem like TimeinDeferral in a number datatype field try like
# Cases <15 days = CALCULATE(
COUNT(Deferrals[regardingobjectid]),
FILTER(Deferrals,
Deferrals[TimeinDeferral] <= 15))
@ArchStanton , seem like TimeinDeferral in a number datatype field try like
# Cases <15 days = CALCULATE(
COUNT(Deferrals[regardingobjectid]),
FILTER(Deferrals,
Deferrals[TimeinDeferral] <= 15))
Yes, that worked, many thanks!!😊
User | Count |
---|---|
83 | |
83 | |
37 | |
34 | |
32 |
User | Count |
---|---|
92 | |
79 | |
62 | |
53 | |
51 |