How to insert string into an if formula?

Tuscana

New Member
Joined
Dec 26, 2020
Messages
10
Office Version
  1. 2019
Platform
  1. Windows
Hello users on MrExcel. I am still a Newbie at VBA, so this question might seem a bit dumb, but i have tried to find a solution for the past 2 days, on and off.

Lets just say, for the ease of it, that i have a Cell with the symbol ">", and it can change to "<"

The cell i defined as "s" and dimmed as string.

My question is:

How do i put it into my if formula

If i & s & k Then (I want it to say i < k Then)

x = x + 1
Else

End if

Any help will be much appreciated!
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
based on your query, your idea is correct. You only have to define i and k. try the following:

i = "i"
k = "k"
MsgBox i & s & k

the result will be

1614244857838.png


hth...
 
Upvote 0
to show you how I would do this try this simple demo,:
put a number in A2 and another number in C2 then put < or > in b2 and run this code. then play with the values:
VBA Code:
a2val = Range("A2").Value
B2Val = Range("b2").Value
c2val = Range("c2").Value
B2asc = Asc(B2Val)
If B2asc = 60 Then ' " <"
 If a2val < c2val Then
   MsgBox (" a2 is less than c2")
 Else
   MsgBox (" a2 is not less than c2")
 End If
End If
If B2asc = 62 Then ' " >"
 If a2val > c2val Then
   MsgBox (" a2 is greater than c2")
 Else
   MsgBox (" a2 is not greater than c2")
 End If
End If
 
Upvote 0
based on your query, your idea is correct. You only have to define i and k. try the following:

i = "i"
k = "k"
MsgBox i & s & k

the result will be

View attachment 33033

hth...
Thank you for your quick response!

I Dimmed i and k to numbers. for information i and k is dices with 6 sides.

If i enter the msgbox in my query it gives me the correct "setup" . But i get type mismatch when it moves on to the if formula.

VBA Code:
    For i = 1 To 6
   
   
        For k = 1 To 6
      
        If i & s & k Then
            x = x + 1
Else
           
            End If
Next k

Next i
 
Upvote 0
You cannot use a string variable as code like that. You'd need to use something like Evaluate there:

Code:
If Evaluate(i & s & k) then
 
Upvote 0
Solution
to show you how I would do this try this simple demo,:
put a number in A2 and another number in C2 then put < or > in b2 and run this code. then play with the values:
VBA Code:
a2val = Range("A2").Value
B2Val = Range("b2").Value
c2val = Range("c2").Value
B2asc = Asc(B2Val)
If B2asc = 60 Then ' " <"
If a2val < c2val Then
   MsgBox (" a2 is less than c2")
Else
   MsgBox (" a2 is not less than c2")
End If
End If
If B2asc = 62 Then ' " >"
If a2val > c2val Then
   MsgBox (" a2 is greater than c2")
Else
   MsgBox (" a2 is not greater than c2")
End If
End If
Thank you for you answer! This works and i will try to learn what i can from this code. It is way more advanced than what my vba skills allow me to write :D
 
Upvote 0
As @RoryA pointed out, IF evaluates your logic as True or False and then points you towards relative result.

You cannot use a string variable as code like that. You'd need to use something like Evaluate there:

Code:
If Evaluate(i & s & k) then

My reply was merely an extension of your own query. The reason behind
If i enter the msgbox in my query it gives me the correct "setup"
is that message box is only displaying all the variables one by one. MsgBox does not calculate the results itself.

hth...
 
Upvote 0
You cannot use a string variable as code like that. You'd need to use something like Evaluate there:

Code:
If Evaluate(i & s & k) then
This works very well and it is easy for me to understand. Just what i needed for my dice evaluation!
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,196
Members
449,072
Latest member
DW Draft

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top