Hello,
How can I do a conditional formatting on a table that has due dates, with the ones closest to being due appearing red, and the ones farthest being green, with a special formatting (maybe bold?) to show the most recent entries to the table?
thanks eh
Hi @hdezeduardo Please have a look at.
Maybe you need to calculate the closest one. BR
You can achieve it by below steps
Create a calculated field (e.g. max date) to find out the max transaction date in your record by using function maxOver
Compare the max date with the date in each record by using function dateDiff
The record with dateDiff value equal to zero is the latest record. Then you can apply conditional formatting base on this column
You may use the same logic to find out the oldest record and apply conditional formatting