Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Inserting values

Sub LookForWS()
Dim rng as Range, c as range
Dim firstAddress as String

With Worksheets("Sheet1").
set rng = .Range(.Cells(1,3),cells(1,3).End(xldown))
End With

With rng
Set c = .Find("WR", lookin:=xlValues)
If Not c Is Nothing Then
firstAddress = c.Address
Do
c.offset(0,3).Value = "WIDESCREEN"
Set c = .FindNext(c)
Loop While Not c Is Nothing And c.Address < firstAddress
End If
End With

End With

--
Regards,
Tom Ogilvy


Rasmus wrote in message
le.rogers.com...
Hi everybody,

This is probably a breeze for most of you guys, but I can't get it to

work,
so please help:

I need a macro that runs through the whole of column C until it finds the
first empty row (ie the whole sheet). If any cell in column C CONTAINS the
values "(WS)" a value of "WIDESCREEN" should then be written in the same

row
but in column F.

Any quick ideas ? All help much appreciated.

Rasmus




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
automatic inserting the values stremetzky Excel Worksheet Functions 0 July 17th 08 07:51 AM
Inserting metal values using data validation Michael Excel Discussion (Misc queries) 3 March 12th 08 08:22 AM
Inserting a cell changes my formula values shallina Excel Worksheet Functions 2 August 18th 06 05:42 PM
Inserting blank entries for missing values rbmcclen Excel Worksheet Functions 1 July 15th 06 02:43 AM
Inserting values Chip Pearson Excel Programming 0 September 7th 03 01:20 AM


All times are GMT +1. The time now is 02:34 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"