Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
A1 45.00
A2 49.00 A3 31.00 A4 34.00 A5 59.00 A6 21.00 A7 =SUM(A1:A7) What i need to do is change the equasion in A7 from "=SUM(A1:A7)" to "=RoundUp(SUM(A1:A7),0)". When i try to do this with this code Sub RoundUP() Dim x As String x = ActiveCell.Formula x = "=roundup(" & x & ",0)" ActiveCell.Formula = x End Sub I get x= "=RoundUp(=SUM(A1:A7),0)" I need to remove the extra internal = sign or do this a different way. How can i do this? Thanks! |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Try:
x = "=roundup(" & right(x, len(x)-1) & ",0)" Regards Trevor "CSUS_CE_Student" wrote in message ... A1 45.00 A2 49.00 A3 31.00 A4 34.00 A5 59.00 A6 21.00 A7 =SUM(A1:A7) What i need to do is change the equasion in A7 from "=SUM(A1:A7)" to "=RoundUp(SUM(A1:A7),0)". When i try to do this with this code Sub RoundUP() Dim x As String x = ActiveCell.Formula x = "=roundup(" & x & ",0)" ActiveCell.Formula = x End Sub I get x= "=RoundUp(=SUM(A1:A7),0)" I need to remove the extra internal = sign or do this a different way. How can i do this? Thanks! |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
x = "=roundup(" & right(x, len(x)-1) & ",0)"
You can replace this... Right(x, Len(x) - 1) with this... Mid(x, 2) Rick |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Editing a macro | Excel Discussion (Misc queries) | |||
Need help editing the Function... | Excel Programming | |||
Need Help Editing this Function... | Excel Worksheet Functions | |||
text editing function help | Excel Worksheet Functions | |||
Manually editing Sort function in VBA | Excel Programming |