I have used the advanced formatting to calculate the number of days since a location was inspected, if that value is over 99 the background in a list item turns red. I'd like to be able to display that value in the text of the list, but cannot figure out how to convert that from the advanced formatting code to a value that can be shown elsewhere. In the screen shot below, I'd like to have the text read "It has been xyz days since this property was visited" positioned after the last visit date.

My code for the formatting looks like this:
// calculates the number of days since a location has been inspected, if greater than 100 days then the background turns Red
var daysSince = round(DateDiff(Today(), $datapoint.LastInsp,'days'))
var alert = 100
var bkgrnd = IIF(daysSince > alert,'#FF7f7f','')
return {
textColor: '',
backgroundColor: bkgrnd,
separatorColor:'',
selectionColor: '',
selectionTextColor: '',
}