Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=C5 & "@" & C6 & " a,b,c"
-- Gary''s Student - gsnu200727 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you Gary. It is exactly what I need.
Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Gary;
I have the formula you gave me (=C5 & "@" & C6 & " a,b,c") placed on the cell "C20". It is working perfectly, however, I need to add the following information: When the cell "C8" has the value 1000 I want the formula in the cell "C20" to be =C5 & "@" & C6 & " a,b,c,d" instead. It is possible to do this. Thanks in advance. Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Use
=IF(c8=2000,C5 & "@" & C6 & " a,b,c,d",C5 & "@" & C6 & " a,b,c") maperalia wrote: Gary; I have the formula you gave me (=C5 & "@" & C6 & " a,b,c") placed on the cell "C20". It is working perfectly, however, I need to add the following information: When the cell "C8" has the value 1000 I want the formula in the cell "C20" to be =C5 & "@" & C6 & " a,b,c,d" instead. It is possible to do this. Thanks in advance. Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=C5 & "@" & C6 & " a,b,c" & IF(C8=1000,",d","") In article , maperalia wrote: Gary; I have the formula you gave me (=C5 & "@" & C6 & " a,b,c") placed on the cell "C20". It is working perfectly, however, I need to add the following information: When the cell "C8" has the value 1000 I want the formula in the cell "C20" to be =C5 & "@" & C6 & " a,b,c,d" instead. It is possible to do this. Thanks in advance. Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
JE;
Thanks very much. Works perfectly!!!! Maperalia "JE McGimpsey" wrote: One way: =C5 & "@" & C6 & " a,b,c" & IF(C8=1000,",d","") In article , maperalia wrote: Gary; I have the formula you gave me (=C5 & "@" & C6 & " a,b,c") placed on the cell "C20". It is working perfectly, however, I need to add the following information: When the cell "C8" has the value 1000 I want the formula in the cell "C20" to be =C5 & "@" & C6 & " a,b,c,d" instead. It is possible to do this. Thanks in advance. Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bob;
Thanks very much. Works perfectly!!!! Maperalia "Bob I" wrote: Use =IF(c8=2000,C5 & "@" & C6 & " a,b,c,d",C5 & "@" & C6 & " a,b,c") maperalia wrote: Gary; I have the formula you gave me (=C5 & "@" & C6 & " a,b,c") placed on the cell "C20". It is working perfectly, however, I need to add the following information: When the cell "C8" has the value 1000 I want the formula in the cell "C20" to be =C5 & "@" & C6 & " a,b,c,d" instead. It is possible to do this. Thanks in advance. Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
JE;
The previous formula (=C5 & "@" & C6 & " a,b,c") was reprensented in vba as a the following statement: "=R5C & ""@"" & R6C & "" a, b, c""". I wondert if you can help me to represent your formula (=C$5 & "@" & C$6 & " a,b,c" & IF(C$8="0.0025 in/min",",d","")) in vba' statement. The problem is that I have a macro which clean the cells to type the new data. Since this is a formula I have you place the formula again. Thanks in advance. Maperalia "JE McGimpsey" wrote: One way: =C5 & "@" & C6 & " a,b,c" & IF(C8=1000,",d","") In article , maperalia wrote: Gary; I have the formula you gave me (=C5 & "@" & C6 & " a,b,c") placed on the cell "C20". It is working perfectly, however, I need to add the following information: When the cell "C8" has the value 1000 I want the formula in the cell "C20" to be =C5 & "@" & C6 & " a,b,c,d" instead. It is possible to do this. Thanks in advance. Maperalia "Gary''s Student" wrote: =C5 & "@" & C6 & " a,b,c" -- Gary''s Student - gsnu200727 |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
"=R5C & ""@"" & R6C & ""a, b, c"" & IF(R8C=""0.0025 in/min"","",d"","""")" In article , maperalia wrote: The previous formula (=C5 & "@" & C6 & " a,b,c") was reprensented in vba as a the following statement: "=R5C & ""@"" & R6C & "" a, b, c""". I wondert if you can help me to represent your formula (=C$5 & "@" & C$6 & " a,b,c" & IF(C$8="0.0025 in/min",",d","")) in vba' statement. The problem is that I have a macro which clean the cells to type the new data. Since this is a formula I have you place the formula again. |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
JE;
Thanks for your quick response. I put the statament you gave me ( "=R5C & ""@"" & R6C & ""a, b, c"" & IF(R8C=""0.0025 in/min"","",d"","""")" ) and I got the following error message: "Compile Error: Expected:line number or label or statement or end of statement" Could you please tell me how to fix it? Thanks. Maperalia "JE McGimpsey" wrote: One way: "=R5C & ""@"" & R6C & ""a, b, c"" & IF(R8C=""0.0025 in/min"","",d"","""")" In article , maperalia wrote: The previous formula (=C5 & "@" & C6 & " a,b,c") was reprensented in vba as a the following statement: "=R5C & ""@"" & R6C & "" a, b, c""". I wondert if you can help me to represent your formula (=C$5 & "@" & C$6 & " a,b,c" & IF(C$8="0.0025 in/min",",d","")) in vba' statement. The problem is that I have a macro which clean the cells to type the new data. Since this is a formula I have you place the formula again. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Copy data of two cells into one | Excel Discussion (Misc queries) | |||
how to copy cells data in every 7th row? | Excel Discussion (Misc queries) | |||
how to copy cells data in every 7th row? | Excel Worksheet Functions | |||
copy and paste between cells that have data | Excel Worksheet Functions | |||
How do I copy data (word) into respective cells when the data bei. | New Users to Excel |