ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro Help!!! (https://www.excelbanter.com/excel-programming/366688-macro-help.html)

[email protected]

Macro Help!!!
 
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.


Ardus Petus

Macro Help!!!
 
Sub tester()
Dim vResult As Variant
vResult = IIf(Range("E2") = 0, _
"? RT = " & Format(Range("F2"), "###.00"), _
Range("C2").Value)
End Sub

HTH
--
AP

a écrit dans le message de news:
...
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.




Ardus Petus

Macro Help!!!
 
sub tester
Var vResult as Variant
vResult = Iif(Range("E2")=0, _
"? RT = " & format(F2,"###.00"), _
Range("C2").Value
end sub
a écrit dans le message de news:
...
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.




[email protected]

Macro Help!!!
 
thanks, but I can't get to work. I saved the routine below and execute
tester as a macro and nothing happens?
I'm sure I'm doing something wrong.
any ideas??


Ardus Petus wrote:
Sub tester()
Dim vResult As Variant
vResult = IIf(Range("E2") = 0, _
"? RT = " & Format(Range("F2"), "###.00"), _
Range("C2").Value)
End Sub

HTH
--
AP

a écrit dans le message de news:
...
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.



[email protected]

Macro Help!!!
 
I tried that and get a "Compile Error, Syntax Error"

Any way I could e-mail you my Spreadsheet?


Ardus Petus wrote:
sub tester
Var vResult as Variant
vResult = Iif(Range("E2")=0, _
"? RT = " & format(F2,"###.00"), _
Range("C2").Value
end sub
a écrit dans le message de news:
...
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.



Ardus Petus

Macro Help!!!
 
Sub tester()
Dim vResult As Variant
vResult = IIf(Range("E2") = 0, _
"? RT = " & Format(Range("F2"), "###.00"), _
Range("C2").Value)
MsgBox vResult
End Sub

It's up to you to code whatever you want with vResult variable!
I just added a Msgbox that displays the value of the variable

Cheers,
--
AP


a écrit dans le message de news:
...
thanks, but I can't get to work. I saved the routine below and execute
tester as a macro and nothing happens?
I'm sure I'm doing something wrong.
any ideas??


Ardus Petus wrote:
Sub tester()
Dim vResult As Variant
vResult = IIf(Range("E2") = 0, _
"? RT = " & Format(Range("F2"), "###.00"), _
Range("C2").Value)
End Sub

HTH
--
AP

a écrit dans le message de news:
...
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.




Ardus Petus

Macro Help!!!
 
Yes please post it to

HTH
--
AP

a écrit dans le message de news:
...
I tried that and get a "Compile Error, Syntax Error"

Any way I could e-mail you my Spreadsheet?


Ardus Petus wrote:
sub tester
Var vResult as Variant
vResult = Iif(Range("E2")=0, _
"? RT = " & format(F2,"###.00"), _
Range("C2").Value
end sub
a écrit dans le message de news:
...
Forgive me for the double post. I had posted this question earlier in
the general excel usegroup, then saw there was programming group and
thought it belonged in here?

I'm trying to create a macro that will execute the funcyion below on a
three columns of data (C, E,F). The columns can vary in length from 26
to 60+ entries.

How do go about doing this?


=IF(E2=0,"? RT = "&TEXT(F2,"###.00"),C2)


Any help is very much appreciated.





All times are GMT +1. The time now is 11:15 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com