text vs numbers copying a cell

bhsoundman

New Member
Joined
Jul 17, 2010
Messages
32
Office Version
  1. 365
Platform
  1. MacOS
Hi All,

This should be a simple question, but apparently I'm a moron.

This script is intended to copy a worksheet, rename it & the copy a cell value (calculated) from the first sheet to the second sheet.

- Creating the worksheet = no problem
- Renaming that sheet to a calculated name = no problem
- Copying and pasting a cell value if that cell value is text = no problem
- Copying and pasting a cell value if that cell value is numeric = problem in line 14

Can someone please set me straight?

Thanks in advance!

VBA Code:
Sub MakeCallSheet()

Dim WkSht As Worksheet

SourceData = Sheets("Crew").Columns(ActiveCell.Column).Rows(8).Value
SourceData2 = Sheets("Crew").Columns(ActiveCell.Column)

Set WkSht = Nothing
On Error Resume Next
Set WkSht = ActiveWorkbook.Worksheets(SourceData)
On Error GoTo 0
 
If WkSht Is Nothing Then
Worksheets("Call Sheet").Copy after:=Worksheets("Crew")
ActiveSheet.Name = SourceData

End If

Worksheets("Crew").Select
Sheets(SourceData).Range("F8") = Sheets("Crew").Columns(ActiveCell.Column).Rows(8).Value

Sheets(SourceData).Select
End Sub
 
Last edited by a moderator:

Excel Facts

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
Try this version:

VBA Code:
Sub MakeCallSheet()
   Dim CrewSheet As Worksheet
   Set CrewSheet = Sheets("Crew")
   
   Dim SourceData As String
   SourceData = CrewSheet.Cells(8, ActiveCell.Column).Value
   
   Dim WkSht As Worksheet
   On Error Resume Next
   Set WkSht = ActiveWorkbook.Worksheets(SourceData)
   On Error GoTo 0
    
   If WkSht Is Nothing Then
      Worksheets("Call Sheet").Copy after:=CrewSheet
      Set WkSht = ActiveSheet
      WkSht.Name = SourceData
   End If
   
   WkSht.Range("F8").Value = CrewSheet.Cells(8, ActiveCell.Column).Value
   WkSht.Select
End Sub
 
Upvote 1
Solution
Glad we could help.

By the way, the reason for the problem was that you hadn't declared SourceData as a String. That meant that if the value was numeric, it was being stored as an actual number value. When you try and use a number value as an index in the Sheets collection, it's looking for the sheet at that position in the workbook, not a sheet by that name. So, for example, if SourceData had a value of 18, it's looking for the 18th sheet (from the left) not a sheet called "18". If you make SourceData a String, all values are treated as text regardless, so it ends up looking for Sheets("18") - i.e. a sheet named "18" - rather than Sheets(18).
Does that make sense?
 
Upvote 1
Glad we could help.

By the way, the reason for the problem was that you hadn't declared SourceData as a String. That meant that if the value was numeric, it was being stored as an actual number value. When you try and use a number value as an index in the Sheets collection, it's looking for the sheet at that position in the workbook, not a sheet by that name. So, for example, if SourceData had a value of 18, it's looking for the 18th sheet (from the left) not a sheet called "18". If you make SourceData a String, all values are treated as text regardless, so it ends up looking for Sheets("18") - i.e. a sheet named "18" - rather than Sheets(18).
Does that make sense?
Thanks for the quick lesson. I knew it had something to do with declarations, but using the "figure it out as I go" method is slow and not very efficient.
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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