Have to alter existing sheet but can't find cells to alter.

limpopo

New Member
Joined
Nov 2, 2016
Messages
11
Hi all,

Just to start, I'm not an Excel expert and just have basic skills.

The situation is that i have an existing Excel sheet that was created a couple of years ago by another person who is no longer available.

At a basic level, the section i want to alter has a box in which you input a code and it appears that the VLOOKUP function is then used to check a table of values and return the relevant response against the input code. The response appears in another box.

The code is input in C7

The corresponding value appears in cell D7

The code that is in D7 is as follows;

=IF(C7="","",VLOOKUP(C7,'codelookup'!A2:D385,2,FALSE))

What i need to do is alter some of the values that are returned against the various codes that are input in C7 as the values have changed.

Being an amateur it appears to me that these values are hidden somewhere . I cant scroll down to have a look at D385 as the sheet stops scrolling at row 200.

Does anyone have any clues please ??

Thank yo
 
Can you run the code below just to make sure it is now unprotected.

Code:
Sub IsWorkbookProtected()

With ActiveWorkbook

If .ProtectWindows Or .ProtectStructure Then

MsgBox "This workbook is protected"

Else

MsgBox "This workbook is not protected"

End If

End With

End Sub
 
Upvote 0

Excel Facts

Waterfall charts in Excel?
Office 365 customers have access to Waterfall charts since late 2016. They were added to Excel 2019.
"the workbook is protected"

I didnt realise the difference between protecting workbooks and sheets.... i think i have the PW though :) but where does it go?
 
Upvote 0
BINGO ! I have it !,,

found the review>unprotect workbook dialogue, used the VBA thing to set sheet 37 to unhidden and the sheet is now visible..

Thank you all so much for your help and perseverance.

Ive learned a lot :)
 
Upvote 0

Forum statistics

Threads
1,214,932
Messages
6,122,331
Members
449,077
Latest member
jmsotelo

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