Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Don,
If varUserInput < "" Then me.Cells(target.row,"Z").Value = varUsereIn Endif will put the result in column Z If you want to find the last cell of data use If varUserInput < "" Then me.Cells(target.row, Cells(target.row,columns.count).end(xlToLeft)+1).V alue = _ varUsereIn Endif -- HTH Bob Phillips ... looking out across Poole Harbour to the Purbecks (remove nothere from the email address if mailing direct) "Don Lindros" wrote in message om... I was wondering if anyone knew the syntax for this: I have a worksheet macro that senses when a cell value is "FAIL". It then prompts the user with an input box, and sends that result to another cell at the end of that row. I'm having trouble with writing the result of the input box to another cell. Can this be done with ranges...? I've yet to get the syntax right. Here's what I have so far: Private Sub Worksheet_Change(ByVal Target As Excel.Range) If Not Application.Intersect(Target, Range("K2:S212")) Is Nothing Then If Target.Value = "FAIL" Then Dim varUserInput As Variant varUserInput = InputBox("Enter comments: ", _ "Comment Field", "") If varUserInput < "" Then 'here's where I need to write varUserInput to a cell at ' the end of the current row End If End If End If End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Question Involving COUNTIF and Possibly DCOUNTA | Excel Worksheet Functions | |||
A question involving attaching formulas | New Users to Excel | |||
A question involving attaching formulas | New Users to Excel | |||
A question involving attaching formulas | New Users to Excel | |||
VBA question involving numerous additions | Excel Programming |