Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

MSPbots has prebuilt widgets to help organize your reports on one page. If these widgets do not fit your requirements, you can always create your own custom widgets and use the table below as a guide to guide below in configuring datasets for your widgets. 

Here are the conditions that you can use when creating custom widgets.  

ConditionsDescription
Is EmptyPulls data with a null value
Is Not EmptyPulls data with a value
Is BlankPulls data with an empty string
Is Not BlankPulls data with a non-empty string
EqualsPulls data that is equal to only one specific value
Not EqualsPulls data that is not equal to one specific value
ContainsPulls data where the field's value matches the input; functions like " ilike '%input%' "
Not containsPulls data where the field's value does not match the input; functions like" not ilike '%input%' "
Start WithPulls data where the first part of the field's value matches the input; functions like " ilike 'input%' "
End WithPulls data where the last part of the field's value matches the input; functions like " ilike '%input' "
INPulls data that is equal to any value in the list; allows choosing a list of values
Not INPulls data that is not equal to any value in the list; allows choosing a list of values
MatchUses regular expression; functions similarly to "Contains"
Not MatchUses regular expression; functions similarly to "Not contains"

...