rss
Search : in
By : Relevance Date Username
Statut : Not resolved

Convert value in the cell into integer

arilla, on Sunday August 3, 2008 03:06:16 PM
Hello,

I am working on creating a macro. I want to go through the sheet and take the quantity that enter in the cell and copy and insert the row as many times as the value that enter in the cell. How do I convert the number in the cell into integer so I could use it as a counter. For example, cell(1,1) has the number 4 in it, so I want to copy the entire row and paste it 4 times. My code doesn't work because when I used Cell(1,i).value it doesn't convert it into integer. Would you please tell me how do I convert the value inthe cell into integer? Thank you very much, any help would be appreciated.


Sub findQty()

Dim LastLine As Integer, i, i1 As Integer
Dim qty As Integer


Sheets("List").Activate
LastLine = Cells(Columns("A").Rows.Count, 1).End(xlUp).Row
For i = 1To LastLine

qty = (Cells(1, i).Value)
If (Cells(1, i).Value) > 1 Then

For i1 = 1 To qty


Rows("7:7").Select
Selection.Copy
Selection.Insert Shift:=xlDown
Cells(1, i).FormulaR1C1 = "1"
Next i1
End if
Next i
Configuration: Windows XP
Firefox 2.0.0.16
Reply to arilla  Report this message to moderators Go to last message

1


  • This message seems useful, vote!
  • Report this message to moderators
 Ivan-hoe, on Tuesday August 5, 2008 05:26:54 PM
Hello arilla,
use CInt to convert a numeric value into integer
qty = CInt(Cells(1, i).Value)

Ivan
Reply to Ivan-hoe
Tips & Tricks relevant found in the knowledge base
26/02 15h05How to make a video clip ?Video
25/02 17h42Identify the processorProcessor
More tricks on « convert value in the cell into integer »
Relevant topic found in the forum
19/06 01h47No input into monitor from pc0
18/06 15h33Two disks jammed into CDROM1
More discussions about « convert value in the cell into integer »
Software found in the relevant downloads
Download Videora Xbox360 Converter  2.16Videora Xbox360 Converter - ideora Xbox 360 Converter is a free Xbox 360 video converter that converts video files, YouTube videos, movies and DVD's so...Category: Video editing
License: Freeware/gratuit
Download Videora Ipod converter 3.07Videora Ipod converter - Videora iPod Converter is a free iPod video converter that converts video files, YouTube videos, movies and DVD's so you can...Category: Video editing
License: Freeware/gratuit
Download PSP Video 9 2.25PSP Video 9 - PSP Video 9 is a free PSP video converter that converts video files, YouTube videos, movies and DVD's so you can play them...Category: Video editing
License: Freeware/gratuit
Download PS3 Video 9 2.25PS3 Video 9 - PS3 Video 9 is a free video conversion application developed by Red Kawa. It allows you to convert your computer video files...Category: Video editing
License: Freeware/gratuit
More freeware about « convert value in the cell into integer »