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 i am trying to count rows between dates, it was wotking fine but when i add 'FACT - CW'[Transaction] = "test" as a filter it seems to ignore it. This is a calculated col
Days Old =
CALCULATE (
COUNTROWS ( 'DIM - Date Table' ),
DATESBETWEEN ( 'DIM - Date Table'[Date], 'FACT - CW'[Date of Receipt],'FACT - CW'[C-Date]-1),
'DIM - Date Table'[IsWorkingDay] = 1,
'DIM - Date Table'[IsHoliday] = 0,
'FACT - CW'[Transaction] = "test"
)
Solved! Go to Solution.
Hi @NewbieJono
please try
Days Old =
CALCULATE (
COUNTROWS ( 'DIM - Date Table' ),
DATESBETWEEN (
'DIM - Date Table'[Date],
'FACT - CW'[Date of Receipt],
'FACT - CW'[C-Date] - 1
),
'DIM - Date Table'[IsWorkingDay] = 1,
'DIM - Date Table'[IsHoliday] = 0,
'FACT - CW'[Transaction] = "test",
CROSSFILTER ( 'DIM - Date Table'[Date], 'FACT - CW'[Date], BOTH )
)
Hi @NewbieJono
please try
Days Old =
CALCULATE (
COUNTROWS ( 'DIM - Date Table' ),
DATESBETWEEN (
'DIM - Date Table'[Date],
'FACT - CW'[Date of Receipt],
'FACT - CW'[C-Date] - 1
),
'DIM - Date Table'[IsWorkingDay] = 1,
'DIM - Date Table'[IsHoliday] = 0,
'FACT - CW'[Transaction] = "test",
CROSSFILTER ( 'DIM - Date Table'[Date], 'FACT - CW'[Date], BOTH )
)
Your date table filters FACT - CW - not the other way around, that's why it's ignored.
Can you share a picture of the data model (relations)?
this as close as i can think (Dax has changed a bit), it does not work
Days Old =
CALCULATE (
COUNTROWS ( 'DIM - Date Table' ),
DATESBETWEEN (
'DIM - Date Table'[Date],
'FACT - Casework'[Date of Receipt],
'FACT - Casework'[COO Date] - 1
),
'DIM - Date Table'[IsWorkingDay] = 1
&& 'DIM - Date Table'[IsHoliday] = 0,
FILTER ( 'FACT - Casework', 'FACT - Casework'[Transaction] = "unallocated" )
)
The only relationship is between the date tabel and the FACT CW table
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 | |
91 | |
88 | |
64 | |
58 |
User | Count |
---|---|
201 | |
137 | |
107 | |
72 | |
68 |