How to apply format to Rollup

I would like to format the rollup numbers to be currency formatted. How can this be achieved? The values in Notion do show the proper formatting, unfortunately, NotionsApps is only showing the raw value which is not represented as currency (float with two positions after the decimal).

Thank you,
Robb

Welcome to the community @RobbK! You could use a formula to wrap the rollup property in a currency.

“$” + prop(“Rollup”)

Thank you for your warm welcome. I cannot figure out how to set the decimal places for the number. Currently shows as $21643.859999999997.

EDIT:
I figured it out

let(test2,round(prop(“Rollup”) *100)/100, “$” + test2)

Robb

1 Like

This is great. I was going to suggest the round or format formulas.