Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Help needed with Inputbox problem

You can cheat and get both items with a single inputbox call:


Sub single_input()
Dim x As String
x = Application.InputBox("enter account, value", Type:=2)
s = Split(x, ",")
Range("H12").Value = s(0)
Range("K12").Value = s(1)
MsgBox (x)
End Sub

basically we input a string and then separate it into substrings using the
comma as the separator. Then we process the substrings individually.

--
Gary''s Student - gsnu200714


"Les Stout" wrote:

Hi all, i have the following code that is working fine, i just need to
add another range and input within the loop.
After the "Account Number" i to put in the value for the account in the
Range("K12:K18"), can i include it in this loop or must i do a different
one ??


For Each x In Range("H12:H18")
x.Value = InputBox("Please enter the Account number..." & vbCrLf &
vbCrLf & _
"To end input, enter nothing", "ACCOUNT NUMBER")
If x.Value = "" Then Exit Sub
Next


Les Stout

*** Sent via Developersdex http://www.developersdex

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 396
Default Help needed with Inputbox problem

Thanks Gary, how would i loop that from line 12 to 18 ??

Les Stout

*** Sent via Developersdex http://www.developersdex.com ***
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,058
Default Help needed with Inputbox problem

Sub single_input()
Dim x As String
For i = 12 To 18
x = Application.InputBox("enter account, value", Type:=2)
If x = "" Then
Exit Sub
End If
s = Split(x, ",")
Cells(i, "H").Value = s(0)
Cells(i, "K").Value = s(1)
Next
End Sub

Remember Les, this is only demo code to show how to use Split. You should
make your inputbox prompt as descriptive as possible. Leave your users no
degrees of freedom.
--
Gary''s Student - gsnu200714


"Les Stout" wrote:

Thanks Gary, how would i loop that from line 12 to 18 ??

Les Stout

*** Sent via Developersdex http://www.developersdex.com ***

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 396
Default Help needed with Inputbox problem

Thanks a mil Gary"s Student, much appreciated... great evening/Day to
all

Les Stout

*** Sent via Developersdex http://www.developersdex.com ***
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
Help needed with Inputbox problem Norman Jones Excel Programming 3 April 10th 07 02:43 PM
Inputbox/Regression Problem Matt[_36_] Excel Programming 2 February 20th 06 08:15 PM
Inputbox/Regression Problem MattB[_3_] Excel Programming 0 February 17th 06 06:29 PM
Inputbox for Worksheet name - problem Stuart[_5_] Excel Programming 3 February 13th 04 07:02 PM
InputBox Method Logic Problem ExcelMonkey[_20_] Excel Programming 2 January 24th 04 04:47 AM


All times are GMT +1. The time now is 12:47 PM.

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"