ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   problem with 'IF' (https://www.excelbanter.com/excel-programming/360437-problem-if.html)

[email protected]

problem with 'IF'
 
How can I create in Excel function like this:

IF (C1 == "7-14"){
cout << "7";
}
else if (C1 == "8-20"){
cout << "12";
}


Bob Phillips[_14_]

problem with 'IF'
 
=IF(C1="7-14",7,IFC1="8-20",12,"")

which will return the value to the calling cell.

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)

wrote in message
oups.com...
How can I create in Excel function like this:

IF (C1 == "7-14"){
cout << "7";
}
else if (C1 == "8-20"){
cout << "12";
}




Tom Ogilvy

problem with 'IF'
 
Depends on where you want the result and whether C1 is a variable or a range
reference.

Select Case Range("C1").value
Case "7-14"
msgbox "7"
Case "8-20"
msgbox "12"
End Select

--
Regards,
Tom Ogilvy



" wrote:

How can I create in Excel function like this:

IF (C1 == "7-14"){
cout << "7";
}
else if (C1 == "8-20"){
cout << "12";
}



Tom Ogilvy

problem with 'IF'
 
or if you meant as a formula

=if(c1="7-14",7,if(c1="8-20",12))

--
Regards,
Tom Ogilvy

" wrote:

How can I create in Excel function like this:

IF (C1 == "7-14"){
cout << "7";
}
else if (C1 == "8-20"){
cout << "12";
}




All times are GMT +1. The time now is 10:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com