BigFix Relevance Question

Hello Trying to add " Percent Used" to a relevance expression

((100 * used amount of ram / total amount of ram) & " Percent Used" This works fine ((100 * used amount of ram / total amount of ram)

Not sure why I get a operator “concatenate” is not defined error

Technically one cannot concatenate an integer with a string, and your calculation results in an integer. We have to cast that result ‘as string’ before we can concatenate it. Try

Q: (100 * used amount of ram / total amount of ram) as string & " Percent Used"
A: 58 Percent Used
T: 1263
3 Likes