Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
Hi,
How can I convert the following to a measure?
Column =
COUNTROWS( (
FILTER (
schedule,
schedule[start_date] <= EARLIER ( [Date] )
// && schedule[end_date] >= EARLIER ( [Date] ) && schedule[no. of attachments] <> 0
&& schedule[end_date] >= EARLIER ( [Date] ) && schedule[no. of attachments] > 0
&& schedule[type] = "Appointment"
)
))
Solved! Go to Solution.
@pieduke88 Try:
Column =
VAR __Date = MAX('Dates'[Date])
VAR __Result =
COUNTROWS(
FILTER (
ALLSELECTED(schedule),
schedule[start_date] <= __Date
&& schedule[end_date] >= __Date && schedule[no. of attachments] > 0
&& schedule[type] = "Appointment"
)
)
@pieduke88 Try:
Column =
VAR __Date = MAX('Dates'[Date])
VAR __Result =
COUNTROWS(
FILTER (
ALLSELECTED(schedule),
schedule[start_date] <= __Date
&& schedule[end_date] >= __Date && schedule[no. of attachments] > 0
&& schedule[type] = "Appointment"
)
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Prices go up Feb. 11th.
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
144 | |
85 | |
65 | |
51 | |
45 |
User | Count |
---|---|
218 | |
88 | |
83 | |
65 | |
56 |