Skip to content

How can I add thresholds for my time in board column chart? #150

Answered by nbrown02
nbrown02 asked this question in Q&A
Discussion options

You must be logged in to vote

There are a few ways you could do this. Here's a few examples:

Adding a constant line

If I wanted to just set a constant line, you'd select the chart. Go to the analytics pane and add a line:

Highlighting when any column goes above a specific value

Go to the format visual pane, click on the formula button and set a threshold for the TimeInColumnDays measure. For example here anything above 20 days goes red:

Highlighting when a specific column(s) goes above a specific value

Say this is your data:

And you wanted to highlight when In Progress > 15 or when In Review > 10, you'd add a new measure:

StatusFormatting = 
VAR InProgressThreshold = 15
VAR InReviewThreshold = 10

VAR CurrentStat…

Replies: 1 comment

Comment options

nbrown02
Mar 10, 2025
Maintainer Author

You must be logged in to vote
0 replies
Answer selected by nbrown02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
question Further information is requested
1 participant