Forum Discussion
Connection with FY table- need help
- 6 years ago
If the FY table is correct that you should not get two FY for the same date, unless you have non-standard months. Can you share some sample of FY Table data?
Typically, I would have merged Date and FY using summarize or would have populated the new column in my date calendar like
Max FY in Cal = maxx(filter(FY CAL,sales[Date] = Date[date] ,FY Cal[FY]))Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges
Connect on Linkedin
Did not get it completely. But if you want to use two dates on the same table please refer this example
HR-Analytics-Active-Employee-Hire-and-Termination-trend
If it is not done. Please make sure you integrate you FY calendar with date table.
To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s.
Refer
https://radacad.com/creating-calendar-table-in-power-bi-using-dax-functions
https://www.archerpoint.com/blog/Posts/creating-date-table-power-bi
https://www.sqlbi.com/articles/creating-a-simple-date-table-in-dax/
Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution. In case it does not help, please provide additional information and mark me with @
Thanks. My Recent Blog -
Winner-Topper-on-Map-How-to-Color-States-on-a-Map-with-Winners , HR-Analytics-Active-Employee-Hire-and-Termination-trend
Power-BI-Working-with-Non-Standard-Time-Periods And Comparing-Data-Across-Date-Ranges
Connect on Linkedin
I know I could not explain it nicely.
Lets see if the below can explain little more.
Now showing
Table 1
Join date. FY.
03012017. 2018.
Table 2
Release date. FY
03012018. 2018
I would like to have below
Table 1
Join date. FY
03012017 2018
Table 2
Release date. FY
03012018. 2019
I have a number of date columns like release date in different dim tables.
Thanks for any help
- amitchandak6 years agoSuper User
I did not get it completely.
But you have left, right, mid string split functions. Also, replace and search for any other use. Hope with help of these you can get desired format of date
- Anonymous6 years agoNot applicableIt's not date format I am talking about. If you see, I am getting wrong FY for 2nd table where I have release date 03012018 and FY2018. FY should be 2019 as the release date is 03012018 and FY starts from Feb. And it is because the FY is referring to the same row from join date column and giving me FY based on join date.
What I need to do differently so that whatever date field user pulls up, they get right FY based on that field.- amitchandak6 years agoSuper User
How is FY calculated in the release table where it wrong. Typically we create a date table and create all required year, FY there and join that with dates of other facts. This way we can ensure that all dates follow the same calendar.