SlideShare a Scribd company logo
COPY-PASTE
Sub Copy()
' Copy from one sheet and paste in other sheet
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteAll
Application.CutCopyMode = False
End Sub
FROM ONE SHEET TO OTHER SHEET
NEXT: PASTE ON SAME SHEET
Sub Copy()
' Copy and paste on same sheet
Range("A1:C5").Copy Destination:= Range("A1")
End Sub
PASTE ON SAME SHEET
THANK YOU
PASTE OPTION
Sub Copy()
' Copy_Paste all Except Borders
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteAllExceptBorders
Application.CutCopyMode = False
End Sub
PASTE ALL EXCEPT BORDERS
NEXT: PASTE COLUMN WIDTH
Sub Copy()
' Copy_Paste only Column Widths
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteColumnWidths
Application.CutCopyMode = False
End Sub
PASTE COLUMN WIDTHS
NEXT: PASTE COMMENTS
Sub Copy()
' Copy_Paste only Comments
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteComments
Application.CutCopyMode = False
End Sub
PASTE COMMENTS
NEXT: PASTE FORMULAS
Sub Copy()
' Copy_Paste only Formulas
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteFormulas
Application.CutCopyMode = False
End Sub
PASTE FORMULAS
NEXT: PASTE FORMULAS AND FORMAT
Sub Copy()
' Copy_Paste Formulas and Number Formats
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteFormulasAndNumber Formats
Application.CutCopyMode = False
End Sub
PASTE FORMULAS AND NUMBER FORMATS
NEXT: PASTE VALUES
Sub Copy()
' Copy_Paste only Values
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteValues
Application.CutCopyMode = False
End Sub
PASTE VALUES
NEXT: PASTE VALUES AND NUMBER FORMAT
Sub Copy()
' Copy_Paste Values and Number Formats
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteValuesandNumberFormats
Application.CutCopyMode = False
End Sub
PASTE VALUES AND NUMBER FORMATS
NEXT: PASTE FORMAT
Sub Copy()
' Copy_Paste only Format
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteFormats
Application.CutCopyMode = False
End Sub
PASTE FORMATS
NEXT: PASTE VALIDATION
Sub Copy()
' Copy_Paste Validation
Sheet1.select
Range("A1:C5").Copy
Sheet2.Select
Range("A1:C5").PasteSpecial xlPasteValidation
Application.CutCopyMode = False
End Sub
PASTE VALIDATION
THANK YOU

More Related Content

What's hot

Making an xy scatter plot
Making an xy scatter plotMaking an xy scatter plot
Making an xy scatter plot
ilanasaxe
 
Calculating a correlation coefficient and scatter plot using excel
Calculating a correlation coefficient and scatter plot using excelCalculating a correlation coefficient and scatter plot using excel
Calculating a correlation coefficient and scatter plot using excel
Sandra Nicks
 
Xlshortcuts07
Xlshortcuts07Xlshortcuts07
Xlshortcuts07
proser tech
 
Excel shortcut
Excel shortcutExcel shortcut
Excel shortcut
vignesh vellaisamy
 
4 4 making changes to graphs
4 4 making changes to graphs4 4 making changes to graphs
4 4 making changes to graphs
QondileRamokgadi
 
Lesson 16 Working With Charts
Lesson 16   Working With ChartsLesson 16   Working With Charts
Lesson 16 Working With Charts
guevarra_2000
 
R03 - Basics of Reporting: Report Setup Part 1
R03 - Basics of Reporting: Report Setup Part 1 R03 - Basics of Reporting: Report Setup Part 1
R03 - Basics of Reporting: Report Setup Part 1
Maintenance Connection
 
Visual studio code keyboard shortcut
Visual studio code keyboard shortcutVisual studio code keyboard shortcut
Visual studio code keyboard shortcut
Jubair Ahmed Junjun
 
Ctrl combination shortcut keys
Ctrl combination shortcut keysCtrl combination shortcut keys
Ctrl combination shortcut keys
Nanda Kumar
 
Creating The Main Content Area
Creating The Main Content AreaCreating The Main Content Area
Creating The Main Content Area
Reema
 
How To Use Excel
How To Use ExcelHow To Use Excel
How To Use Excel
Julia Happel
 
Excel
ExcelExcel
Create The Featured Project Section:
Create The Featured Project Section:Create The Featured Project Section:
Create The Featured Project Section:
Reema
 
Xl shortcuts
Xl shortcutsXl shortcuts
Creating & Editing Charts In Microsoft Excel 2003
Creating & Editing Charts In Microsoft Excel 2003Creating & Editing Charts In Microsoft Excel 2003
Creating & Editing Charts In Microsoft Excel 2003
bud_00
 
Creating The Footer:
Creating The Footer:Creating The Footer:
Creating The Footer:
Reema
 
List of ms office shortcut by rana salah ud-din 0313-1613927
List of  ms office shortcut by rana salah ud-din 0313-1613927List of  ms office shortcut by rana salah ud-din 0313-1613927
List of ms office shortcut by rana salah ud-din 0313-1613927
Rana Salah-ud-Din
 
InDesign for editors - wrap up
InDesign for editors - wrap upInDesign for editors - wrap up
InDesign for editors - wrap up
Joe Nasr
 
Excel shortcuts
Excel shortcutsExcel shortcuts
Excel shortcuts
Razzzz Kumar
 
Common Excel Shortcut Keys
Common Excel Shortcut KeysCommon Excel Shortcut Keys
Common Excel Shortcut Keys
Maruf Abdullah (Rion)
 

What's hot (20)

Making an xy scatter plot
Making an xy scatter plotMaking an xy scatter plot
Making an xy scatter plot
 
Calculating a correlation coefficient and scatter plot using excel
Calculating a correlation coefficient and scatter plot using excelCalculating a correlation coefficient and scatter plot using excel
Calculating a correlation coefficient and scatter plot using excel
 
Xlshortcuts07
Xlshortcuts07Xlshortcuts07
Xlshortcuts07
 
Excel shortcut
Excel shortcutExcel shortcut
Excel shortcut
 
4 4 making changes to graphs
4 4 making changes to graphs4 4 making changes to graphs
4 4 making changes to graphs
 
Lesson 16 Working With Charts
Lesson 16   Working With ChartsLesson 16   Working With Charts
Lesson 16 Working With Charts
 
R03 - Basics of Reporting: Report Setup Part 1
R03 - Basics of Reporting: Report Setup Part 1 R03 - Basics of Reporting: Report Setup Part 1
R03 - Basics of Reporting: Report Setup Part 1
 
Visual studio code keyboard shortcut
Visual studio code keyboard shortcutVisual studio code keyboard shortcut
Visual studio code keyboard shortcut
 
Ctrl combination shortcut keys
Ctrl combination shortcut keysCtrl combination shortcut keys
Ctrl combination shortcut keys
 
Creating The Main Content Area
Creating The Main Content AreaCreating The Main Content Area
Creating The Main Content Area
 
How To Use Excel
How To Use ExcelHow To Use Excel
How To Use Excel
 
Excel
ExcelExcel
Excel
 
Create The Featured Project Section:
Create The Featured Project Section:Create The Featured Project Section:
Create The Featured Project Section:
 
Xl shortcuts
Xl shortcutsXl shortcuts
Xl shortcuts
 
Creating & Editing Charts In Microsoft Excel 2003
Creating & Editing Charts In Microsoft Excel 2003Creating & Editing Charts In Microsoft Excel 2003
Creating & Editing Charts In Microsoft Excel 2003
 
Creating The Footer:
Creating The Footer:Creating The Footer:
Creating The Footer:
 
List of ms office shortcut by rana salah ud-din 0313-1613927
List of  ms office shortcut by rana salah ud-din 0313-1613927List of  ms office shortcut by rana salah ud-din 0313-1613927
List of ms office shortcut by rana salah ud-din 0313-1613927
 
InDesign for editors - wrap up
InDesign for editors - wrap upInDesign for editors - wrap up
InDesign for editors - wrap up
 
Excel shortcuts
Excel shortcutsExcel shortcuts
Excel shortcuts
 
Common Excel Shortcut Keys
Common Excel Shortcut KeysCommon Excel Shortcut Keys
Common Excel Shortcut Keys
 

More from Pramodkumar Jha

R programming
R programmingR programming
R programming
Pramodkumar Jha
 
Macros for Border, Weight Clear Data
Macros for Border, Weight Clear DataMacros for Border, Weight Clear Data
Macros for Border, Weight Clear Data
Pramodkumar Jha
 
Macros code Copy paste visible data after filtering
Macros code Copy paste visible data after filteringMacros code Copy paste visible data after filtering
Macros code Copy paste visible data after filtering
Pramodkumar Jha
 
Macros code For Loop
Macros code For LoopMacros code For Loop
Macros code For Loop
Pramodkumar Jha
 
Macros code for Font, Style, Size, Bold
Macros code for Font, Style, Size, BoldMacros code for Font, Style, Size, Bold
Macros code for Font, Style, Size, Bold
Pramodkumar Jha
 
Macros code for Protecting and Unprotecting Sheets
Macros code for Protecting and Unprotecting SheetsMacros code for Protecting and Unprotecting Sheets
Macros code for Protecting and Unprotecting Sheets
Pramodkumar Jha
 
Macros for Shape and formula
Macros for Shape and formulaMacros for Shape and formula
Macros for Shape and formula
Pramodkumar Jha
 
Macros for Workbook
Macros for WorkbookMacros for Workbook
Macros for Workbook
Pramodkumar Jha
 
Macros for Workbook
Macros for WorkbookMacros for Workbook
Macros for Workbook
Pramodkumar Jha
 
Non-Verbal communication language
Non-Verbal communication languageNon-Verbal communication language
Non-Verbal communication language
Pramodkumar Jha
 
Letters presentation
Letters presentationLetters presentation
Letters presentation
Pramodkumar Jha
 
E mails presentation
E mails presentationE mails presentation
E mails presentation
Pramodkumar Jha
 
Communication
CommunicationCommunication
Communication
Pramodkumar Jha
 
Communication across cultures
Communication across culturesCommunication across cultures
Communication across cultures
Pramodkumar Jha
 
Body language
Body languageBody language
Body language
Pramodkumar Jha
 
Barriers to communication
Barriers to communicationBarriers to communication
Barriers to communication
Pramodkumar Jha
 
Business intelligence
Business intelligenceBusiness intelligence
Business intelligence
Pramodkumar Jha
 
Iifl
IiflIifl
Financial ratios analysis
Financial ratios analysisFinancial ratios analysis
Financial ratios analysis
Pramodkumar Jha
 
Financial concept (part ii)
Financial concept (part ii)Financial concept (part ii)
Financial concept (part ii)
Pramodkumar Jha
 

More from Pramodkumar Jha (20)

R programming
R programmingR programming
R programming
 
Macros for Border, Weight Clear Data
Macros for Border, Weight Clear DataMacros for Border, Weight Clear Data
Macros for Border, Weight Clear Data
 
Macros code Copy paste visible data after filtering
Macros code Copy paste visible data after filteringMacros code Copy paste visible data after filtering
Macros code Copy paste visible data after filtering
 
Macros code For Loop
Macros code For LoopMacros code For Loop
Macros code For Loop
 
Macros code for Font, Style, Size, Bold
Macros code for Font, Style, Size, BoldMacros code for Font, Style, Size, Bold
Macros code for Font, Style, Size, Bold
 
Macros code for Protecting and Unprotecting Sheets
Macros code for Protecting and Unprotecting SheetsMacros code for Protecting and Unprotecting Sheets
Macros code for Protecting and Unprotecting Sheets
 
Macros for Shape and formula
Macros for Shape and formulaMacros for Shape and formula
Macros for Shape and formula
 
Macros for Workbook
Macros for WorkbookMacros for Workbook
Macros for Workbook
 
Macros for Workbook
Macros for WorkbookMacros for Workbook
Macros for Workbook
 
Non-Verbal communication language
Non-Verbal communication languageNon-Verbal communication language
Non-Verbal communication language
 
Letters presentation
Letters presentationLetters presentation
Letters presentation
 
E mails presentation
E mails presentationE mails presentation
E mails presentation
 
Communication
CommunicationCommunication
Communication
 
Communication across cultures
Communication across culturesCommunication across cultures
Communication across cultures
 
Body language
Body languageBody language
Body language
 
Barriers to communication
Barriers to communicationBarriers to communication
Barriers to communication
 
Business intelligence
Business intelligenceBusiness intelligence
Business intelligence
 
Iifl
IiflIifl
Iifl
 
Financial ratios analysis
Financial ratios analysisFinancial ratios analysis
Financial ratios analysis
 
Financial concept (part ii)
Financial concept (part ii)Financial concept (part ii)
Financial concept (part ii)
 

Recently uploaded

一比一原版(harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(harvard毕业证书)哈佛大学毕业证如何办理一比一原版(harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(harvard毕业证书)哈佛大学毕业证如何办理
taqyea
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
SaffaIbrahim1
 
ViewShift: Hassle-free Dynamic Policy Enforcement for Every Data Lake
ViewShift: Hassle-free Dynamic Policy Enforcement for Every Data LakeViewShift: Hassle-free Dynamic Policy Enforcement for Every Data Lake
ViewShift: Hassle-free Dynamic Policy Enforcement for Every Data Lake
Walaa Eldin Moustafa
 
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
sameer shah
 
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
nuttdpt
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
bopyb
 
UofT毕业证如何办理
UofT毕业证如何办理UofT毕业证如何办理
UofT毕业证如何办理
exukyp
 
Build applications with generative AI on Google Cloud
Build applications with generative AI on Google CloudBuild applications with generative AI on Google Cloud
Build applications with generative AI on Google Cloud
Márton Kodok
 
DSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelinesDSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelines
Timothy Spann
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
bmucuha
 
Monthly Management report for the Month of May 2024
Monthly Management report for the Month of May 2024Monthly Management report for the Month of May 2024
Monthly Management report for the Month of May 2024
facilitymanager11
 
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
nyfuhyz
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
AndrzejJarynowski
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
Lars Albertsson
 
Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024
ElizabethGarrettChri
 
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Aggregage
 
A presentation that explain the Power BI Licensing
A presentation that explain the Power BI LicensingA presentation that explain the Power BI Licensing
A presentation that explain the Power BI Licensing
AlessioFois2
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
Social Samosa
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
soxrziqu
 
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
xclpvhuk
 

Recently uploaded (20)

一比一原版(harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(harvard毕业证书)哈佛大学毕业证如何办理一比一原版(harvard毕业证书)哈佛大学毕业证如何办理
一比一原版(harvard毕业证书)哈佛大学毕业证如何办理
 
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docxDATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
DATA COMMS-NETWORKS YR2 lecture 08 NAT & CLOUD.docx
 
ViewShift: Hassle-free Dynamic Policy Enforcement for Every Data Lake
ViewShift: Hassle-free Dynamic Policy Enforcement for Every Data LakeViewShift: Hassle-free Dynamic Policy Enforcement for Every Data Lake
ViewShift: Hassle-free Dynamic Policy Enforcement for Every Data Lake
 
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
STATATHON: Unleashing the Power of Statistics in a 48-Hour Knowledge Extravag...
 
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
 
UofT毕业证如何办理
UofT毕业证如何办理UofT毕业证如何办理
UofT毕业证如何办理
 
Build applications with generative AI on Google Cloud
Build applications with generative AI on Google CloudBuild applications with generative AI on Google Cloud
Build applications with generative AI on Google Cloud
 
DSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelinesDSSML24_tspann_CodelessGenerativeAIPipelines
DSSML24_tspann_CodelessGenerativeAIPipelines
 
一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理一比一原版(UO毕业证)渥太华大学毕业证如何办理
一比一原版(UO毕业证)渥太华大学毕业证如何办理
 
Monthly Management report for the Month of May 2024
Monthly Management report for the Month of May 2024Monthly Management report for the Month of May 2024
Monthly Management report for the Month of May 2024
 
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
一比一原版(UMN文凭证书)明尼苏达大学毕业证如何办理
 
Intelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicineIntelligence supported media monitoring in veterinary medicine
Intelligence supported media monitoring in veterinary medicine
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
 
Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024Open Source Contributions to Postgres: The Basics POSETTE 2024
Open Source Contributions to Postgres: The Basics POSETTE 2024
 
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
 
A presentation that explain the Power BI Licensing
A presentation that explain the Power BI LicensingA presentation that explain the Power BI Licensing
A presentation that explain the Power BI Licensing
 
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
4th Modern Marketing Reckoner by MMA Global India & Group M: 60+ experts on W...
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
 
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
一比一原版(Unimelb毕业证书)墨尔本大学毕业证如何办理
 

Macros to Copy Paste

  • 2. Sub Copy() ' Copy from one sheet and paste in other sheet Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteAll Application.CutCopyMode = False End Sub FROM ONE SHEET TO OTHER SHEET NEXT: PASTE ON SAME SHEET
  • 3. Sub Copy() ' Copy and paste on same sheet Range("A1:C5").Copy Destination:= Range("A1") End Sub PASTE ON SAME SHEET THANK YOU
  • 5. Sub Copy() ' Copy_Paste all Except Borders Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteAllExceptBorders Application.CutCopyMode = False End Sub PASTE ALL EXCEPT BORDERS NEXT: PASTE COLUMN WIDTH
  • 6. Sub Copy() ' Copy_Paste only Column Widths Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteColumnWidths Application.CutCopyMode = False End Sub PASTE COLUMN WIDTHS NEXT: PASTE COMMENTS
  • 7. Sub Copy() ' Copy_Paste only Comments Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteComments Application.CutCopyMode = False End Sub PASTE COMMENTS NEXT: PASTE FORMULAS
  • 8. Sub Copy() ' Copy_Paste only Formulas Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteFormulas Application.CutCopyMode = False End Sub PASTE FORMULAS NEXT: PASTE FORMULAS AND FORMAT
  • 9. Sub Copy() ' Copy_Paste Formulas and Number Formats Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteFormulasAndNumber Formats Application.CutCopyMode = False End Sub PASTE FORMULAS AND NUMBER FORMATS NEXT: PASTE VALUES
  • 10. Sub Copy() ' Copy_Paste only Values Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteValues Application.CutCopyMode = False End Sub PASTE VALUES NEXT: PASTE VALUES AND NUMBER FORMAT
  • 11. Sub Copy() ' Copy_Paste Values and Number Formats Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteValuesandNumberFormats Application.CutCopyMode = False End Sub PASTE VALUES AND NUMBER FORMATS NEXT: PASTE FORMAT
  • 12. Sub Copy() ' Copy_Paste only Format Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteFormats Application.CutCopyMode = False End Sub PASTE FORMATS NEXT: PASTE VALIDATION
  • 13. Sub Copy() ' Copy_Paste Validation Sheet1.select Range("A1:C5").Copy Sheet2.Select Range("A1:C5").PasteSpecial xlPasteValidation Application.CutCopyMode = False End Sub PASTE VALIDATION THANK YOU