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

The FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now

Reply
eberg3
New Member

Asset Managment Dashboard

Hey Everyone,

 

I am trying to find a way to accurately and quickly display an assest managment dashboard for our company. Currently we use a simple Gantt Chart with an excel sheet driving the information, then refer to multiple other excel sheets to see how many assets are required for one day.

 

So we are wanting to use the information feeding the gantt chart which has a start and end date. Have this read a table which has the total quantity available and highlight any constraints. IE. Customer X will be renting Design 1 (which includes 3 Valves, 1 Cross) on April 3-12th, Customer Y will be renting Design 2 (which is 2 Valves and 2 Cross) on April 8-28th. We have only 4 valves and 2 crosses available in total. So the report would highlight that we will have a shortage April 8th to 12th due to insuffient assets.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @eberg3 ,

I created some data:

vyangliumsft_0-1683168957324.png

 

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
CALENDAR(
    DATE(2023,4,1),
    DATE(2023,4,30))

2. Create measure.

Cross_Remaining quantity =
var _all=2
return
4 -
SUMX(
    FILTER(ALL('Table'),
    'Table'[Date1]<=MAX('Table 2'[Date])&&'Table'[Date2]>=MAX('Table 2'[Date])),[Cross])
Valve_Remaining quantity =
var _all=4
return
4 -
SUMX(
    FILTER(ALL('Table'),
    'Table'[Date1]<=MAX('Table 2'[Date])&&'Table'[Date2]>=MAX('Table 2'[Date])),[Valves])
Measure =
IF(
    [Cross_Remaining quantity] <=0 || [Valve_Remaining quantity] <=0,
    "shortage","abundant")

3. Result:

vyangliumsft_1-1683168957331.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @eberg3 ,

I created some data:

vyangliumsft_0-1683168957324.png

 

Here are the steps you can follow:

1. Create calculated table.

Table 2 =
CALENDAR(
    DATE(2023,4,1),
    DATE(2023,4,30))

2. Create measure.

Cross_Remaining quantity =
var _all=2
return
4 -
SUMX(
    FILTER(ALL('Table'),
    'Table'[Date1]<=MAX('Table 2'[Date])&&'Table'[Date2]>=MAX('Table 2'[Date])),[Cross])
Valve_Remaining quantity =
var _all=4
return
4 -
SUMX(
    FILTER(ALL('Table'),
    'Table'[Date1]<=MAX('Table 2'[Date])&&'Table'[Date2]>=MAX('Table 2'[Date])),[Valves])
Measure =
IF(
    [Cross_Remaining quantity] <=0 || [Valve_Remaining quantity] <=0,
    "shortage","abundant")

3. Result:

vyangliumsft_1-1683168957331.png

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Perfect thank you, this helps a ton!

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

Check out the March 2026 Power BI update to learn about new features.