Hi @Dominic,
Great! With a little help of AI I found a suitable formula. Thank you!
const number = context.item.data?.[‘t_total’];
// Use Intl.NumberFormat to format the number as currency in de-DE format with EUR currency
const formattedCurrency = new Intl.NumberFormat(‘de-DE’, { style: ‘currency’, currency: ‘EUR’ }).format(number);
// Return the formatted currency value
return formattedCurrency;
I will now replace the locale and symbol by parameters but this is easy.