Jan 17, 2023 04:34 PM
Hi Folks,
I'm trying out using the rating field for a ongoing review process and want to be able to roll up an average of those ratings. I've managed to get the rollup to work but can't get rid of the NaN for fields that don't have ratings yet. I've tried a couple different formulas that I've seen for similar questions but nothing seems to be working. Thanks!
Solved! Go to Solution.
Jan 18, 2023 06:41 AM
Jan 17, 2023 05:45 PM
You can solution this by rolling the field up, showing NaN, then creating a second field that is a IF formula, removing any items that are NaN.
IF({Rollup-Field}="NaN", BLANK(), {Rollup-Field})
Jan 17, 2023 07:04 PM
I did try that and it's not working for some reason. Here's a picture of my formula and the two fields in question
Jan 18, 2023 06:41 AM
Sorry, Kelly! Let's do it backwards.
IF(Average>1, Average) should work!
Jan 18, 2023 09:25 AM
That worked! Thank you!
Jan 10, 2024 07:13 AM
I wonder if you can have the rollup formatted as "rating" as well (with the stars). Thanks!