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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Bartolo88
New Member

BI report on training/competency expiration

G'day everyone,

 

I have a simple data set for my team's competencies and training. Each column (there are over 12) refers to a training and competency. Each row refers to each team member. Values are formatted dates that stipulate when that training requires a referresher or "re-sit". Because competencies for us are really dynamic we need to make sure these dates don't slip and we know they are upcoming.

 

I would like to create a visualisation that informs us of the 30/60/90 day rule for when these course are up coming to plan for? Possibly as a multi row card or bar chart - however something I'll play around with when the data is locked in.

 

Does any one know how I should go about this considering all my dates are futures and the report will be refreshed and generated weekly?

 

Thanks in advance and really looking forward to the assist.

 

Bart

 

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Bartolo88 , Create a bucket column like

 

New column =

var _diff = datediff(today(), [Plan Date], day() )

return

Switch(true() ,

_diff <= 30 , "  0 -30 Days",

_diff <= 60 , " 30 -60 Days",

_diff <= 90 , " 60 -90 Days",

"More than 90 Days"

)

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Bartolo88 , Create a bucket column like

 

New column =

var _diff = datediff(today(), [Plan Date], day() )

return

Switch(true() ,

_diff <= 30 , "  0 -30 Days",

_diff <= 60 , " 30 -60 Days",

_diff <= 90 , " 60 -90 Days",

"More than 90 Days"

)

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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