Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm using an Excel worksheet to demonstrate subtraction (with "borrows") to my Maths students. I have a button which crosses out a digit (in a cell), ready to reduce the digit by 1
I can't code the worksheet to clear the "diagonal cell line", ready for the next example Sounds complicated! but I would appreciate some assistance thank Bill |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Perhaps:
With Selection .Borders(xlDiagonalDown).LineStyle = xlNone .Borders(xlDiagonalUp).LineStyle = xlNone End With -- Jim Rech Excel MVP "Bill" wrote in message ... | I'm using an Excel worksheet to demonstrate subtraction (with "borrows") to my Maths students. I have a button which crosses out a digit (in a cell), ready to reduce the digit by 1. | I can't code the worksheet to clear the "diagonal cell line", ready for the next example. | Sounds complicated! but I would appreciate some assistance. | thanks | Bill |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
thanks Jim, will try
Bill ----- Jim Rech wrote: ----- Perhaps: With Selection .Borders(xlDiagonalDown).LineStyle = xlNone .Borders(xlDiagonalUp).LineStyle = xlNone End With -- Jim Rech Excel MVP "Bill" wrote in message ... | I'm using an Excel worksheet to demonstrate subtraction (with "borrows") to my Maths students. I have a button which crosses out a digit (in a cell), ready to reduce the digit by 1. | I can't code the worksheet to clear the "diagonal cell line", ready for the next example. | Sounds complicated! but I would appreciate some assistance. | thanks | Bill |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
vba line for clearing data from a cell | Excel Discussion (Misc queries) | |||
add diagonal line with text on each side of line | Excel Discussion (Misc queries) | |||
diagonal line | Excel Discussion (Misc queries) | |||
how do I add a autoshape such as a diagonal line to a cell | Excel Discussion (Misc queries) | |||
Excel XP - Diagonal line in a cell | New Users to Excel |