Hi I want to make a pie chart that shows how many data are meet the condition out of total data.
For example, pie chart will show 15/100 has date that is more than 15 days from today.
Any idea how to do this??
Thank you

Hi I want to make a pie chart that shows how many data are meet the condition out of total data.
For example, pie chart will show 15/100 has date that is more than 15 days from today.
Any idea how to do this??
Thank you
Hi @Anonymous ,
I have made a simple test for your reference.
Table(
{Type:"Total"&" ( "&CountRows(DataSource)&" )",Num:CountRows(DataSource)},
{Type:"15 days"&" ( "&CountRows(Filter(DataSource,DateAdd(Now(),15,Days)<DateColumn))&" )",
Num:CountRows(Filter(DataSource,DateAdd(Now(),15,Days)<DateColumn))}
)
Best Regards,
Charlie Choi