Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Anonymous
Not applicable

Data Model Question

Hi,

 

I have a chart I need to create showing the CY FTE, Forecast FTE, and PY FTEs month over month. The CY and PY FTE data is in table 6 in the screenshot and the Forecast FTE data is in table 5 in the screenshot.

I'm having troubles creating a visual with months on the x axis and the values mentioned above (CY FTE, Forecast FTE, and PY FTE) because the dim Date is conneced to Table 5, but not Table 6. Table 6 is connected to table 2 which is then connected to Table 1 (Date table).

 

Is there any way to use the date table to show all 3 values even with table 2 as a link between table 6 and 1? There are other charts on the dashboard that use the dim Date table so I prefer to use that, but it's not working with the Forecast data since the connecting table is the dimFinancial for that table (Table 6). Any ideas on how to make it work?Data Model.PNG

1 ACCEPTED SOLUTION
parry2k
Super User
Super User

@Anonymous may be the measure you are using from table 6, in that measure force crossfilter direction to both, something like this

 

Measure 6 =
CALCULATE ( 
SUM ( Table6[Amount] ),
CROSSFILTER ( DimDate[Date], DimFiscalPeriod[Date], BOTH ) 
)

 

In crossfilter user the columns that are used in the relationship between dimdate and dimfiscalperiod.

 

Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

View solution in original post

3 REPLIES 3
parry2k
Super User
Super User

@Anonymous something like this

 

Measure 6 =
CALCULATE ( 
SUM ( Table6[Amount] ),
CROSSFILTER ( DimDate[Date], DimFiscalPeriod[Date], BOTH ),
DATESYTD ( DimeDate[Date], "4/30" )
)

 

Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Anonymous
Not applicable

That looks like it's returning more values than before - thanks! What if I need to also incorporate Total YTD for the summed value though? Where would that go within the calculation listed above? Fiscal Year End is 4/30

parry2k
Super User
Super User

@Anonymous may be the measure you are using from table 6, in that measure force crossfilter direction to both, something like this

 

Measure 6 =
CALCULATE ( 
SUM ( Table6[Amount] ),
CROSSFILTER ( DimDate[Date], DimFiscalPeriod[Date], BOTH ) 
)

 

In crossfilter user the columns that are used in the relationship between dimdate and dimfiscalperiod.

 

Check my latest blog post Year-2020, Pandemic, Power BI and Beyond to get a summary of my favourite Power BI feature releases in 2020

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.