Skip to content
Gallery
CISO Dashboard template
Share
Explore
CISO Dashboard

icon picker
Security incidents

info

The Summary Table aggregates all of the individual items from the Data table

You should have one row for each Priority level in this table
Incidents Summary Table
Priority
Count
Template
All Data Items
Order
1
P0
1
Red Callout
New wave of DOS attacks
1
2
P1
0
Orange Callout
2
3
P2
0
Yellow Callout
3
4
P3
0
Blue Callout
4
There are no rows in this table
info

The Data Table is your granular data from your source

This is each individual report or record with a Priority assigned.
Incidents Data Table
Title
Description
Assigned to
Priority
Status
Incident doc
1
New wave of DOS attacks
We are seeing a flood of requests on our API endpoint /users
P0
In progress
There are no rows in this table

info

Showing a bulleted list ticket counts by priority level

We go through each row in the Summary Table and for each one, we Concatenate() the Priority level as the label and the count of rows from the data table as the value.
If the count is greater than 0, we hyperlink the number to the row modal popup to show the details.
The following formula needs to be added to the respective “Content” field in the table

P0:
P1: 0
P2: 0
P3: 0
[Incidents Summary Table].ForEach(
Concatenate(
CurrentValue.Priority.ToText(),":",_Bold(" "),
If(
CurrentValue.Count = 0,
0,
Hyperlink(
Concatenate(CurrentValue.ObjectLink(),"&view=modal"),
CurrentValue.Count.ToText()
)
)
)
).Join(LineBreak())

info

The callout below is a formula that can be placed on the page

Security incidents

P0:
P1: 0
P2: 0
P3: 0
Details
Format(
If(
[Incidents Summary Table].Count.Sum() = 0,
[Steady State].Template,
[Incidents Summary Table].Filter(
Count > 0
).MinBy(Order).Template.Template
),
// @reference the respective row from Dashboard Sections and use the Content Combined column
Incidents.[Content Combined]
)

Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.