Forum Discussion
How to show value per week
- 2 years ago
Make sure your date fields are formatted as date in particular the 'Data Inicial'. You can try this see if this fixes the issue. Create a new column in your fMetas table refering to the Data inicial. Then join this column with your date table instead of directly from the data inicial column.
DateValidation = DATE(
YEAR(fMetas[Data Inicial])
,MONTH(fMetas[Data Inicial])
,DAY(fMetas[Data Inicial])
)
Make sure your date fields are formatted as date in particular the 'Data Inicial'. You can try this see if this fixes the issue. Create a new column in your fMetas table refering to the Data inicial. Then join this column with your date table instead of directly from the data inicial column.
DateValidation = DATE(
YEAR(fMetas[Data Inicial])
,MONTH(fMetas[Data Inicial])
,DAY(fMetas[Data Inicial])
)