Combobox value apparently doesn't match cell value

Dtex20

Board Regular
Joined
Jan 29, 2018
Messages
50
Hi guys,

Code:
For Each cellImp In hideRange  
 If cellImp.Value = NoOfImpressionsBox.Value Then
     cellImp.EntireColumn.Hidden = False
   Else
     cellImp.EntireColumn.Hidden = True
   End If
Next cellImp

I've got a range ws.Range("BF4:BY4"), that gets pasted to a function. Both the value of "BF4" & NoOfImpressionsBox(combobox) are "1" i've checked with msgbox to make sure both variable return 1. However when running the code, they are not matching and the if statement is skipping. I've used the exact same processes elsewhere and it works.

Any suggestions?

Thanks guys!
 
Last edited by a moderator:

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
The combobox value will be a string rather than a number, which maybe the problem
try
Code:
If cellImp.Value = clng(NoOfImpressionsBox.Value) Then
 
Upvote 0
The combobox value will be a string rather than a number, which maybe the problem
try
Code:
If cellImp.Value = clng(NoOfImpressionsBox.Value) Then

You're correct, i was wondering if was along those lines.

Works great now mate! thanks!
 
Upvote 0
Glad to help & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,217,364
Messages
6,136,114
Members
449,993
Latest member
Sphere2215

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