Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Hello everyone, I'm quite new with VB; I've had experience with other programmin languages though. For this line: Dim UniqueCount As Integer UniqueCount = "=ROWS(R5C1:R" & LastRow2 & "C1)" I know that I cannot automatically assign UniqueCount the value of tha formula. How would I format the line such that I can indeed assig UniqueCount the row value of that line? Thank you in advance -- Obliviou ----------------------------------------------------------------------- Oblivious's Profile: http://www.excelforum.com/member.php...fo&userid=3504 View this thread: http://www.excelforum.com/showthread.php?threadid=54787 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hey - welcome to the fun.
You can access most of the Excel worksheet formulae with application.worksheetfunction. However, Rows isn't one of them. Fortunately, VBA has its own equivalent. UniqueCount = Range("A5:A" & LastRow2).Rows.Count Jeff "Oblivious" wrote in message ... Hello everyone, I'm quite new with VB; I've had experience with other programming languages though. For this line: Dim UniqueCount As Integer UniqueCount = "=ROWS(R5C1:R" & LastRow2 & "C1)" I know that I cannot automatically assign UniqueCount the value of that formula. How would I format the line such that I can indeed assign UniqueCount the row value of that line? Thank you in advance. -- Oblivious ------------------------------------------------------------------------ Oblivious's Profile: http://www.excelforum.com/member.php...o&userid=35041 View this thread: http://www.excelforum.com/showthread...hreadid=547877 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
syntax problem | Excel Programming | |||
Syntax problem | Excel Programming | |||
Syntax problem | Excel Worksheet Functions | |||
Another Syntax Problem | Excel Programming |