• Instructions to Ask a Question

    For any assistance, please click the "Ask a Question" button and select the Pabbly product for which you require support.

    We offer seven comprehensive applications designed to help you efficiently manage and grow your business:

    Our support team endeavors to respond within 24 business hours (Monday to Friday, 10:00 AM to 6:00 PM IST). We appreciate your understanding and patience.

    🚀 Exclusive Lifetime Offers 🚀

    We invite you to take advantage of our special one-time payment plans, providing lifetime access to select applications:

    • 🔥 Pabbly Connect — Lifetime Access for $249View Offer
    • 🔥 Pabbly Subscription Billing — Lifetime Access for $249View Offer
    • 🔥 Pabbly Chatflow — Lifetime Access for $249View Offer

    Make a one-time investment and enjoy the advantages of robust business management tools for years to come.

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.
 
P

Pabblymember11

Guest
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.
 
P

Pabblymember11

Guest
Hey @refine.digital

Yes when the false response comes, the response would be empty. But we are currently looking into it for the desired response.
 
Top