need the column number of a value

zpierucci

New Member
Joined
Sep 5, 2019
Messages
42
I am using an inputbox to have a user enter a month( Jan - Dec) The months are in Columns B:M in row 1

I need to know the column number of the selected month. I've tried match and it seems to be failing me. any ideas?
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
If the input results in A1, then A2 would give you the month match and the column number: =MATCH(A1,B1:M1,0)+1

Another way could be: =MONTH(1&LEFT(A1,3))+1

Or simply: =MONTH(1&A1)+1

Is that what you mean?
 
Last edited:
Upvote 0
Try this

Code:
Sub enter_month()
  Dim mnt, n
  mnt = InputBox("enter a month( Jan - Dec)")
  n = Month(Format(("1/" & mnt & "/2019"), "dd/mm/yyyy"))
  msgbox "Column " & n +1
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,751
Members
448,989
Latest member
mariah3

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