Forum

Notifications
Clear all

RUN FORMULA IN IF FUNCTION INSTEAD OF TRUE OR FALSE

3 Posts
2 Users
0 Reactions
61 Views
(@chmukesh)
Posts: 2
New Member
Topic starter
 

HI
I want to use IF function e.g. =IF(ISNUMBER(SEARCH("Price",H54)), "=RIGHT(H54,6)*1"," =(H54)*1")

Instead of TRUE FALSE text I want to run the formula starting of "=" e.g. =RIGHT(H54,6)*1 & "=(H54)*1" but the above IF formula write as text.

is there any alternate formula to implement the logic.

Thanx and regards

 
Posted : 01/09/2022 4:22 am
(@mynda)
Posts: 4761
Member Admin
 

Hi Mukesh,

Because you're enclosing the results you want in "", you are treating everything between the "" as text.  To get the function to work remove the "" e.g.

=IF(ISNUMBER(SEARCH("Price",H54)), RIGHT(H54,6)*1 ,  H54*1)

Regards

Phil

 
Posted : 01/09/2022 4:32 am
(@chmukesh)
Posts: 2
New Member
Topic starter
 

BIG BIG THANKS, I TRIED EVERYTHING EVEN WITHOUT INVERTED COMMAS BUT NOTHING WORKED AS MY MISTAKE WAS EQUAL TO SIGN = IN MY FORMULA.

THANKS A LOT....

 
Posted : 01/09/2022 6:31 am
Share: