Forum Discussion
Anonymous
4 years agoNot applicable
Python to Dax help
Hello all, I am currently trying to convert this below code into something that I can paste into DAX and create a new column that reads a date column and returns the fiscal week. To clarify, my F...
Anonymous
4 years agoNot applicable
vapid128
4 years agoSolution Specialist
Sorry, my mistake.
IsFiscalWeek = "5/1" in CALCULATETABLE(VALUES(Dates2[MMD]),ALLEXCEPT(Dates2,Dates2[weeknum])
- Anonymous4 years agoNot applicable
When I try to make the IsFiscalWeek column I receive the following error message. I've tried changing Date and MMD value formats but none are working.
Thanks
- vapid1284 years agoSolution SpecialistIsFiscalWeek = "5/1" inCALCULATETABLE(VALUES(Dates2[MMD]),ALLEXCEPT(Dates2,Dates2[weeknum]))And you date colnum should not skip in date
- Anonymous4 years agoNot applicable
I've made the changes and it just returns false. I've tried every different formatting option but it still returns False each time