• Instructions to Ask a Question

    Click on the "Ask a Question" button and select the application for which you would like to ask questions.

    We have 5 different products namely - Pabbly Connect, Pabbly Subscription Billing, Pabbly Email Marketing, Pabbly Form Builder, Pabbly Email Verification.

    The turnaround time is 24 hrs (Business Hours - 10.00 AM to 6.00 PM IST, Except Saturday and Sunday). So your kind patience will be highly appreciated!

    🚀🚀Exclusive Discount Offer

    Just in case you're looking for any ongoing offers on Pabbly, you can check the one-time offers listed below. You just need to pay once and use the application forever -
     

    🔥 Pabbly Connect One Time Plan for $249 (🏆Lifetime Access) -  View offer 

    🔥 Pabbly Subscription Billing One Time Plan for $249 (🏆Lifetime Access) - View offer

Number Formatter - Spreadsheet Formulas

Does anyone have a tip on how to make Logical and String Functions to work in Spreadsheets formulas?

I've tested the following but even the basic doesn't even work from the documentation: https://www.pabbly.com/spreadsheet-formulas/

Ex.
AND(true, false, true) => Result is {empty}
IF('John' = 'John', 'Hello!', 'Goodbye!') => Result is {empty}
LEFT('Sale Price', 4) => Result is {empty}
etc.
 
Now the IF and LEFT functions are working when I deleted the step and recreated it. However it seems to be an issue with ANY logical functions and using true, false values.
 

Supreme

Well-known member
Staff member
Hey @refine.digital

The logical formula which you have mentioned is also working in the "Number Formatter by Pabbly: Spreadsheet Formulas".

Please check out the following screenshot -

2022-02-07_15h22_11.png

2022-02-07_15h24_25.png
 
It appears logical values of false is the issue which returns {empty} value. This cause any IF functions to fail and return odd results.

Example:

Formula: LEN('1. Linkedin Profile : https://www.linkedin.com/in/peo-linder-00000000')>0
Result: 1

Formula: LEN('1. Linkedin Profile : https://www.linkedin.com/in/peo-linder-00000000')=0
Result: {empty}

Formula: NOT(0)
Result: 1

Formula: NOT(1)
Result: {empty}

Formula: IF( LEN('1. Linkedin Profile : https://www.linkedin.com/in/peo-linder-00000000')>0, 'True', 'False')
Result: 1
Hey @refine.digital

The logical formula which you have mentioned is also working in the "Number Formatter by Pabbly: Spreadsheet Formulas".

Please check out the following screenshot -

View attachment 7616
View attachment 7617
As I already reported. It worked again AFTER recreating the step. Can you post your result for this Formula:

AND(true, false, true)

Expected Result: false
Actual Result: {empty}
 
It appears logical values of false is the issue which returns {empty} value. This cause any IF functions to fail and return odd results.

Example:

Formula: LEN('1. Linkedin Profile : https://www.linkedin.com/in/peo-linder-00000000')>0
Result: 1

Formula: LEN('1. Linkedin Profile : https://www.linkedin.com/in/peo-linder-00000000')=0
Result: {empty}

Formula: NOT(0)
Result: 1

Formula: NOT(1)
Result: {empty}

Formula: IF( LEN('1. Linkedin Profile : https://www.linkedin.com/in/peo-linder-00000000')>0, 'True', 'False')
Result: 1

As I already reported. It worked again AFTER recreating the step. Can you post your result for this Formula:

AND(true, false, true)

Expected Result: false
Actual Result: {empty}
Any Formula which evaluates as False is returned as {empty} which is not the same as False in a Google Sheets evaluation.
 
Top