Returns a list of users who haven't signed in for more than 90 days.To only return Lite users (Or another specific type of user, add the following after the first "[": RoleName == Lite &&Change the 90 to however many days you want to monitor Users[? LastSignInAt && time_since(LastSignInAt, days ) > 90 ].join(' | Days Since Last Log In: ', [Email, to_string(time_since(LastSignInAt, days ))])