Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
New-here1
Contributor III
Contributor III

Using button on a pivot table

Hello All,

I would like to add a button to my app to filter out a pivot table but having some issues.

When clicking the button, I'd like everything that is conditional formatted in red for example, to show. Is there a way to do this with a button please?

The pivot table has dates in it and the date that is conditional formatted in red has the following formula:

IF([End Date]>AddMonths([Due Date],0),red())

So I would like when clicking on the button, everything that is in red, to show.

Thank you 

Labels (4)
1 Solution

Accepted Solutions
Rohan
Specialist
Specialist

Hi,

Try something like this :

Create that If(End_Date>Due_Date,'Y','N') as flag in Backend 

Refer below image for Action - Selecting a value in Field & select Field as flag & value as Y.

Rohan_0-1705921762561.png

Hope it works.

Regards,

Rohan.

View solution in original post

2 Replies
Rohan
Specialist
Specialist

Hi,

Try something like this :

Create that If(End_Date>Due_Date,'Y','N') as flag in Backend 

Refer below image for Action - Selecting a value in Field & select Field as flag & value as Y.

Rohan_0-1705921762561.png

Hope it works.

Regards,

Rohan.

New-here1
Contributor III
Contributor III
Author

That worked, thank you @Rohan 🙂