Help to check report's name Quaterly, Yearly. If match report name vill clear column

sbv1986

Board Regular
Joined
Nov 2, 2017
Messages
87
Hi all

I have workbook with data in sheet(result)
sheet(result).range(F1) have value like: yyyymm=> 201909, 201908 ....
Now I want macro to check that:
1. Get 02 character from right(range(F1)) = b
2. If b <> 12 then check each cell(1,j).value from range(G1, last column)
- If cell(1,j).value = A001 or B002 or C003 then Clear column(j) from row 2 to last row
- Check if b <> 09 or b <> 06 or b <> 03 then check again each cell(i,j).value from range(G1, last column)
If cell(i,j).value = G01 or G02 or G03 then Clear column(j) from row 2 to last row

For Examble clear my idea:
Code:
b = right(sheets(result).range(F1),2)
if b = 12 then do nothing' This's report of year

if b = 09 then 'This is repoert of Quater
check each cell(i,j).value from range(G1, last column) 
=> if Cells(1,8).value = "A001" then range(H2:H).clear
=> if Cells(1,9).value = "C003" then range(I2:I).clear
.....

if b =08 then ' This is report of month
check each cell(i,j).value from range(G1, last column) 
=> if Cells(1,8).value = "A001" then range(H2:H).clear
=> if Cells(1,9).value = "C003" then range(I2:I).clear
=> if Cells(1,11).value = "G01" then range(K2:K).clear
=> if Cells(1,15).value = "G03" then range(O2:O).clear
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
Hi SBV,
that is some nice pseudo-code. Some hints before I dive into code: start with the macro recorder to get some real code and teach yourself a bit more with e.g. https://www.excel-pratique.com/en/vba.php or https://www.homeandlearn.org/ .
Secondly: There is a difference between sheets(result) and sheets("result"). The first assumes you have somewhere above in your code a variable named result with a text/string in it, the second simply looks for a worksheet named result. So to improve your pseudo code a bit:

Code:
Sub ClearItAll()

sheet_name = "Blad1"
Set s = Worksheets(sheet_name)
first_column = s.Range("G1").Column
last_column = 16
first_row = 2
last_row = 100

b = Right(s.Range("F1").Value, 2)

If b <> 12 Then
    If b Mod 3 = 0 Then
        'quarters
        For col = first_col To last_col
            If s.Cells(1, col).Value = "A001" Or s.Cells(1, col).Value = "A001" Or s.Cells(1, col).Value = "C003" Then
                s.Range(s.Cells(start_row, col), s.Cells(end_row, col)).ClearContents
            End If
        Next col
    Else
        'months
        'do something here
    End If
End If

End Sub

Hope that gets you moving, please do post more code if you get stuck.
Cheers,
Koen
 
Upvote 0

Forum statistics

Threads
1,214,527
Messages
6,120,054
Members
448,940
Latest member
mdusw

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