vba - validate previous month file selection

Mallesh23

Well-known Member
Joined
Feb 4, 2009
Messages
976
Office Version
  1. 2010
Platform
  1. Windows
Hi Team

I want validation to cross check whether user has selected correct excel files.
Every Input file Range("a1") has this line :-ABC Limited (Period = Apr-2020 - Apr-2020)
This is the standard format only month and year get changed.

My task is to validate previous months file, to current months file selected.

if user select may months file as current months , previous file should be April months.

Current Month ABC Limited (Period = May-2020 - May-2020)
Previous Month ABC Limited (Period = Apr-2020 - Apr-2020)


Thanks in advance
mg
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Hi Team,
This is my File name,


AB
Current Month FilePrevious Month File
ABC XYZ INDIA PRIVATE LIMITED (Period = May-2020 - May-2020)ABC XYZ INDIA PRIVATE LIMITED (Period = Apr-2020 - Apr-2020)

VBA Code:
Sub TEST()

Dim CurrentMonth As String
Dim PreviousMonth As String

CurrentMonth = Split(Range("a2"))(7)
PreviousMonth = Split(Range("b2"))(7)

MsgBox CurrentMonth
MsgBox PreviousMonth


'output - CurrentMonth = May-2020   compare here previous month should be Apr - 2020
'output - PreviousMonth  = Apr-2020  


End Sub
 
Upvote 0
Cross posted vba - extract month and compare

While we do allow Cross-Posting on this site, we do ask that you please mention you are doing so and provide links in each of the threads pointing to the other thread (see rule 13 here along with the explanation: Forum Rules). This way, other members can see what has already been done in regards to a question, and do not waste time working on a question that may already be answered.
 
Upvote 0

Forum statistics

Threads
1,214,985
Messages
6,122,602
Members
449,089
Latest member
Motoracer88

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