Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

232
Views
I need to copy value (not formula) from "Regular Tournament" to "Score Input-Flights" without using Select and Paste Value. Is there a simple formula?

I'm looking for a simple way to copy values only (omitting formulas) from one sheet to another without using .Select and PasteSpecial.Values. I have hundreds of sections of code like this one that need modification. I've searched the web but can't find anything that works.

Sheets("Regular Tournament").Select
Range("B22:B221").Select
Selection.Copy
Sheets("Score Input-Flights").Select
Range("D13").Select
Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
            False, Transpose:=False
Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:= _
            False, Transpose:=False
about 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Let me give you a simple idea (in VBA):

Destination_Range.Value = Source_Range.Value

In your case:

Sheets("Score Input-Flights").Range("D13:D212").Value = Sheets("Regular Tournament").Range("B22:B221").Value

In regular Excel it's even simpler: just use this formula:

='Regular Tournament'!A1
about 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!