Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default How can I get a value from two cells into the new cell.

Basically, I want to take the value from the cell A1 and cell A2 and type it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default How can I get a value from two cells into the new cell.

try this

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value

--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default How can I get a value from two cells into the new cell.

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia




  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default How can I get a value from two cells into the new cell.

Gary;
Thanks very much it is working perfectly.

Maperalia

"Gary Keramidas" wrote:

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia





  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default How can I get a value from two cells into the new cell.

Gary;
I wonder if you can help me to accomplish this part. Basically, the value
that I have created in the previous request is the filename; however, I want
to create a hyperlink with this new filename.
For example, this is the table I have in excel:

A B C D E
1 Work Order #: 4444 Filename
2 Location: B1 B1 @ 100.xls
3 Point: 100

Where cell E2 will take the filename from the description written in the
table of the left side. However, I want this filename to have a hyperlink
automatically with the following path:

C:\Test\4444\ B1 @ 100.xls

Obviously, the work order number will be changed all the time along the
location and the point.
It that possible if you can help me with the VBA stattement to get this step
done?

Thanks in advance.

Maperalia


"Gary Keramidas" wrote:

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia







  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default How can I get a value from two cells into the new cell.

see if this will work for you, you may have to change the cell addresses if i
have them wrong. i couldn't tell from the post, the alignment was off.

Option Explicit
Dim hl As String
Sub test()
With Worksheets("Sheet1")
hl = "c:\test\" & .Range("B1").Value & "\" & Range("B2").Value _
& "@" & Range("B3").Value & ".xls"
.Hyperlinks.Add .Range("E2"), hl
End With
End Sub

--


Gary


"maperalia" wrote in message
...
Gary;
I wonder if you can help me to accomplish this part. Basically, the value
that I have created in the previous request is the filename; however, I want
to create a hyperlink with this new filename.
For example, this is the table I have in excel:

A B C D E
1 Work Order #: 4444 Filename
2 Location: B1 B1 @ 100.xls
3 Point: 100

Where cell E2 will take the filename from the description written in the
table of the left side. However, I want this filename to have a hyperlink
automatically with the following path:

C:\Test\4444\ B1 @ 100.xls

Obviously, the work order number will be changed all the time along the
location and the point.
It that possible if you can help me with the VBA stattement to get this step
done?

Thanks in advance.

Maperalia


"Gary Keramidas" wrote:

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type
it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia







  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default How can I get a value from two cells into the new cell.

Gary;
I ran it and it is working perfectly!!!!!!!!
I really appreciatte your helping with this statement.

Best regards.
Maperalia

"Gary Keramidas" wrote:

see if this will work for you, you may have to change the cell addresses if i
have them wrong. i couldn't tell from the post, the alignment was off.

Option Explicit
Dim hl As String
Sub test()
With Worksheets("Sheet1")
hl = "c:\test\" & .Range("B1").Value & "\" & Range("B2").Value _
& "@" & Range("B3").Value & ".xls"
.Hyperlinks.Add .Range("E2"), hl
End With
End Sub

--


Gary


"maperalia" wrote in message
...
Gary;
I wonder if you can help me to accomplish this part. Basically, the value
that I have created in the previous request is the filename; however, I want
to create a hyperlink with this new filename.
For example, this is the table I have in excel:

A B C D E
1 Work Order #: 4444 Filename
2 Location: B1 B1 @ 100.xls
3 Point: 100

Where cell E2 will take the filename from the description written in the
table of the left side. However, I want this filename to have a hyperlink
automatically with the following path:

C:\Test\4444\ B1 @ 100.xls

Obviously, the work order number will be changed all the time along the
location and the point.
It that possible if you can help me with the VBA stattement to get this step
done?

Thanks in advance.

Maperalia


"Gary Keramidas" wrote:

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type
it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia








  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default How can I get a value from two cells into the new cell.

Gary;
The hyperlink is vanished after is been copied to another file. Could you
please tell me how can I make it keep the hyperlink with it path after is
been copied.
Thnaks in advance .
Maperalia
"Gary Keramidas" wrote:

see if this will work for you, you may have to change the cell addresses if i
have them wrong. i couldn't tell from the post, the alignment was off.

Option Explicit
Dim hl As String
Sub test()
With Worksheets("Sheet1")
hl = "c:\test\" & .Range("B1").Value & "\" & Range("B2").Value _
& "@" & Range("B3").Value & ".xls"
.Hyperlinks.Add .Range("E2"), hl
End With
End Sub

--


Gary


"maperalia" wrote in message
...
Gary;
I wonder if you can help me to accomplish this part. Basically, the value
that I have created in the previous request is the filename; however, I want
to create a hyperlink with this new filename.
For example, this is the table I have in excel:

A B C D E
1 Work Order #: 4444 Filename
2 Location: B1 B1 @ 100.xls
3 Point: 100

Where cell E2 will take the filename from the description written in the
table of the left side. However, I want this filename to have a hyperlink
automatically with the following path:

C:\Test\4444\ B1 @ 100.xls

Obviously, the work order number will be changed all the time along the
location and the point.
It that possible if you can help me with the VBA stattement to get this step
done?

Thanks in advance.

Maperalia


"Gary Keramidas" wrote:

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and type
it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia








  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default How can I get a value from two cells into the new cell.

not sure what you mean. what are you copying and how?

--


Gary


"maperalia" wrote in message
...
Gary;
The hyperlink is vanished after is been copied to another file. Could you
please tell me how can I make it keep the hyperlink with it path after is
been copied.
Thnaks in advance .
Maperalia
"Gary Keramidas" wrote:

see if this will work for you, you may have to change the cell addresses if i
have them wrong. i couldn't tell from the post, the alignment was off.

Option Explicit
Dim hl As String
Sub test()
With Worksheets("Sheet1")
hl = "c:\test\" & .Range("B1").Value & "\" & Range("B2").Value _
& "@" & Range("B3").Value & ".xls"
.Hyperlinks.Add .Range("E2"), hl
End With
End Sub

--


Gary


"maperalia" wrote in message
...
Gary;
I wonder if you can help me to accomplish this part. Basically, the value
that I have created in the previous request is the filename; however, I
want
to create a hyperlink with this new filename.
For example, this is the table I have in excel:

A B C D E
1 Work Order #: 4444 Filename
2 Location: B1 B1 @ 100.xls
3 Point: 100

Where cell E2 will take the filename from the description written in the
table of the left side. However, I want this filename to have a hyperlink
automatically with the following path:

C:\Test\4444\ B1 @ 100.xls

Obviously, the work order number will be changed all the time along the
location and the point.
It that possible if you can help me with the VBA stattement to get this
step
done?

Thanks in advance.

Maperalia


"Gary Keramidas" wrote:

sorry, missed the xls at the end

Range("b1").Value = Range("A1").Value & " @ " & Range("a2").Value & ".xls"


--


Gary


"maperalia" wrote in message
...
Basically, I want to take the value from the cell A1 and cell A2 and
type
it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the
cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia










  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 718
Default How can I get a value from two cells into the new cell.

enter following formula in B1:
=A1&" @"&A2&".xls"

HTH
--
AP

"maperalia" a écrit dans le message de
...
Basically, I want to take the value from the cell A1 and cell A2 and type

it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia






  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 258
Default How can I get a value from two cells into the new cell.

Ardus;
Thanks very much it is working perfectly.

Maperalia

"Ardus Petus" wrote:

enter following formula in B1:
=A1&" @"&A2&".xls"

HTH
--
AP

"maperalia" a écrit dans le message de
...
Basically, I want to take the value from the cell A1 and cell A2 and type

it
in the cell B1.
For example, if the cell A1=Core and cell A2=50; I want to get in the cell
B1 the following:
Core @ 50.xls

If this possible to do this?

Thanks in advance.
Maperalia





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
compare 2 column cells and return the adjacent columns cells data of the cell trebor57 Excel Worksheet Functions 1 February 1st 11 02:54 PM
Compare 1 cell to column of cells returning adjacent cells info? Mr. Fine Excel Worksheet Functions 1 April 15th 10 07:36 PM
Sorting cells: a list behind the cells do not move with the cell Ross M Excel Discussion (Misc queries) 2 September 21st 06 12:14 PM
Unmerge cells and place contents of first cell in all cells Amanda Excel Programming 1 September 12th 05 10:52 PM
Copy cells into range of cells until cell change mdeanda Excel Worksheet Functions 1 April 22nd 05 08:41 PM


All times are GMT +1. The time now is 09:35 AM.

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

About Us

"It's about Microsoft Excel"