Hi guys,
Maybe you can help a bit with the DAX? Userelationship just doesnt work. I have Dates table with relationship to " Date Completed" and inactive one with " Date Created". Can you see anything jumping out as wrong in the below, please?
BP time to process =
CALCULATE(
COUNTROWS(Dates),
DATESBETWEEN(
Dates[Date],
USERELATIONSHIP( Workday[Date Created], Dates[Date] ),
Workday[Date Completed] ),
Dates[IsWorkday] = TRUE,
ALLSELECTED( Workday )
)
Yeah, thank you, saw these articles. Was very helpful with one Userelationship,I made that work, but cant make it work with datesbetween. Can you notice anything wrong in syntax or something in my dax?
Thank you so much for trying to help. I get this message: “A single value for column ‘Date Created’ in table ‘Workday’ cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.”