Forum Discussion
Column chart with two different date for the same month
- 3 years ago
Create 2 relationships from your date table to your fact table, one based on the sign off date and one based on the reported date. You can then activate the correct relationship in the measures like
Num reported = CALCULATE ( COUNTROWS ( 'Table' ), USERELATIONSHIP ( 'Date'[Date], 'Table'[Reported date] ) )
Create 2 relationships from your date table to your fact table, one based on the sign off date and one based on the reported date. You can then activate the correct relationship in the measures like
Num reported =
CALCULATE (
COUNTROWS ( 'Table' ),
USERELATIONSHIP ( 'Date'[Date], 'Table'[Reported date] )
)
- zhona93 years ago
Resolver I
Do you have a link to how to create a date table?
I found this code, but not sure if it is correct.
Dates = CALENDAR(MIN('g360_Incidents'[reported_date]),MAX('g360_Incidents'[risk_lead_sign_off_date]))I get an error:
- johnt753 years ago
Super User
https://bravo.bi/ can create date tables for you. The syntax you used is correct, not sure why you're getting an error. Maybe some of the dates in the columns you referenced are blank.
- zhona93 years ago
Resolver I
In the end I used the reported date for min and max in the date table and it was ok. You are right, the sign off date will be blank at times and that caused the error.