Re: How to represent a column in Excel by Earl
Earl
Fri Feb 09 10:05:51 CST 2007
One quick-and-dirty way is to just do the whole column, x`like:
> {=SUM(IF((Data!G2:G65536="Verified")*(Data!K2:K65536<=7),1,0))}
It won't be appropriate for Excel 2007, but is there any chance at all you'll actually fill
the sheet to row 65536? It's also considered somewhat sloppy, but you'll have long since
been promoted. It works just fine.
You can set up what's called a dynamic range. There are restrictions. Search for that if
you want to go that way.
--
Earl Kiosterud
www.smokeylake.com
-----------------------------------------------------------------------
<kOdreaming@gmail.com> wrote in message
news:1171033975.589426.62480@j27g2000cwj.googlegroups.com...
> Hi, everyone
>
> I currently have a formula.
>
> {=SUM(IF((Data!G2:G75="Verified")*(Data!K2:K75<=7),1,0))}
>
>
> However, the length of both column G and K are not fixed.
> The data is retrieved from a remote database.
>
> Is there any other way to represent it ?
>
>
> Thanks
>