Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
mparker123
Creator
Creator

Past Due & Pending Action Buttons

Hello,

I am trying to create two action buttons. One that will show me "Past Due" and one that will show me "Pending". The formula I am using for "Past Due" is =If([Due Date]<Today(),[Due Date])...... The formula i am using for "Pending" is =If([Due Date]>=Today()and [Due Date]<= today()+7,[Due Date]). Both these Formulas work and show me what i want to see within a straight table. However, i am now trying to create Action Buttons that when you click on the "past due" button or "pending" button it will show you only those values.

3 Replies
Anil_Babu_Samineni

I would always recommend you to go these approaches for this

1) May be Adhoc reports

2) Could be possible with Hide and show option for 2 straight tables

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
neelamsaroha157
Specialist II
Specialist II

Hi Matt,

You can create a variable for Hide/Show and in your table use that for showing one of the expression at one time.

Use the button to change value of the variable.Capture.PNG

johnw
Champion III
Champion III

Seems to me you could do this with a new field and a list box instead of buttons.

if([Due Date]<today(),'Past Due',if([Due Date]<=today()+7,'Pending','Other') as Status,