Saved Search Formula to show Payment Status - search

I need to put in a saved search a column saying if the specific Sales Order was fully paid, if yes, the column needs to say "Paid" if not "Waiting for Payment".
This was the formula that I did:
CASE WHEN {applyingtransaction.status} ='PAID IN FULL' THEN 'PAID' ELSE 'WAITING FOR PAYMENT' END
But it gives me the message: ERROR: Invalid Expression
Can you help me?
Thank you.

=if(Status="PAID IN FULL","Paid","Waiting For Payment")

Related

II CELL VALIDATION IN EXCEL II

I want to validate cell value only letters should be allowed at least six and more?
I have tried but I have failed I want to get answers through you I am sure you will try to give me the answer I want as soon as possible?
Dear NARESH VIJAYKUMAR SHINDE
I have done the same thing as you require before, hope you enjoy the solution
You can find the solution on the Microsoft website as an attached link,
https://support.microsoft.com/en-us/office/apply-data-validation-to-cells-29fecbcc-d1b9-42c1-9d76-eff3ce5f7249
If the cell is A1, you can test it as follow:
=IF(ISTEXT(A1), IF(LEN(A1) > 5, TRUE, FALSE), "Not a text")
If you mean Data Validation Excel functionality, you can define the rule as follow:
If you enter a text that is shorter and if you defined an Error Alert message you get the following:

Problem with Excel IF function having too many arguements

I'm trying to automate a task for myself to see if I can see if an item is "overdue". However, I also wanted to add in a feature where if the item has been returned, then I won't be warned that that item is overdue. This is what I came up with so far:
=IF(OR(AND(A2<=TODAY()-14)), AND(D2=returned),"Overdue","Not due")
I'm currently trialling a 2 week loan period, where if the item is returned not returned within 14 days, I want the B column to show "overdue".
In my excel sheet, I'm currently trying to have cell B2 to show "not due" because while it has been more than 14 days, the item has been "returned" as can be seen from column D.
My current excel sheet
Thank you.
Try
=IF((OR(A2>TODAY(), D2="returned")), "Not Due", "Overdue")
Use the syntax for Example 2 to get a clean OR
Switch Not Due and Overdue because it is easier to reason about with OR than AND
Put quotes around "returned". Note you could use LOWER(D2) if you want to control for capitalization
=IF(AND(A2<=(TODAY()-14), D2<>"returned"),"Overdue","Not due")

NetSuite Saved Search Calculate Date Difference Between Two Related Records

I'm trying to calculate the difference in days between an Invoice Date and the Date it was emailed out on a Saved Search.
I have a saved search created where I can see both the Invoice date (trandate) as well as the email date (messages.messagedate) but when I try to put this into a formula I keep getting a "field not found error".
I'm new to NetSuite and I also don't know a lot of SQL so I'm sure it's something basic I'm missing but here's what I have tried:
Formula (Date): TRUNC({messages.messageDate}-{transaction.tranDate}) || ' days '
Formula (Numeric): ROUND({message.messageddate}-{transaction.trandate})
I've tried "messages." and "message." and I've tried transaction. and without "transaction.".
I think I'm just missing the exact structure I need to use to reference the fields on two separate but connected records.
Please assist!
Please use Formula numeric and try with this formula
ABS(TO_DATE({messages.messagedate})-TO_DATE({trandate}))

Orders on 2 sheets and new order confirmation change followup

How can I check whether order confirmations has changed from last weeks report?
I get an weekly report with orders (order number:x123) and confirmations(dates) and they are on different sheets.
What I would like to do is: With Vlookup, Find the corresponding order and print out word "old order" and then use this value to check the confirmations dates match per last week and print out "match" or " do not match".
I thought this was simple but I cant get it to work. Please help!

How to use logical formula to return a TRUE value

I need help to use a formula in excel to help me get the list of names to be followed up in my tele-call report. Only Parameters with Contact Not Reachable, Contact Not Available, Contact Not Sure / Undecided need to be followed up and the rest (Not Interested - No Representative, Appointment Confirmed, Blocked by Gatekeeper are NOT required any follow up.
I've tried using OR to get a return of FALSE for names need not to be followed up with above parameters mentioned but failed when i get a TRUE showing combination of Contact Not Reachable and Not Interested - No Representative in the next column.
Hope, my understanding is right. Please refer the snap below
Apply the below formula in E2 and drag down
=IF(SUM(COUNTIF(B2:D2,"Contact Not Reachable"),COUNTIF(B2:D2,"Contact Not Sure / Undecided"),COUNTIF(B2:D2,"Contact Not Available"))>=1,"Follow Up", "No Need")
enter image description here
I've edited your formula with the below:
=IF(SUM(COUNTIF(AP:AU,"Contact Not Reachable"),COUNTIF(AP:AU,"Contact Not Sure / Undecided"),COUNTIF(AP:AU,"Contact Not Available"),COUNTIF(AP:AU,"Contact Potentially Attending / Maybe"),COUNTIF(AP:AU,"Contact will Reply to Invitation"),COUNTIF(AP:AU,"Not Interested - Sending Representative"),COUNTIF(AP:AU,"Outstation / Overseas Number"),COUNTIF(AP:AU,"Requested to Call Back"),COUNTIF(AP:AU,"Requested to Resend Invitation / Email"))>=1,"Follow Up", "No Need")

Resources