Is there a way to set up an alert on a sheet for when it is nearing the 5000-row limit?
Thanks!
You would need to use a helper column to establish how many rows are currently on a sheet. You could then set up a notification to trigger when the number in that column reaches a certain amount.
Hi Lisi,
To add to Paul's suggestion.
The helper column could be an auto number column if you're not using one for anything else.
Hope that helps!
Have a fantastic week!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
Andree,
I thought about the auto-number column, but then there's the hassle of having to reset it if you happen to delete any rows.
Yes, of course! If that's the case!
Then it would be better to use a formula that would count only the actual rows.
I typically will reference a column that will always have text in it (task name for instance) and then use a straightforward COUNTIFS.
=COUNTIFS([Task Name]$1:[Task Name]@row, ISTEXT(@cell))
.
Of course you could always just reference the entire column and tuck the formula elsewhere and then trigger the notification off of that cell, but I use row numbers as a visual reference.
My particular uses involve actually displaying specific row numbers in some metrics (I believe it piggy-backs off of a solution you provided for something else) to give people the ability to quickly jump to past due tasks.
You're thinking of my TOC solution.
I am trying to populate a column from Sheet A into Sheet B and Sheet C. My Lookup column for Sheet A is formatted as such so there is a ' in front to account for ones that have a leading 0 and some do not. Each ID should be 6 digits long. I made a helper column looking at this Dealer ID column to try and get rid of that…
am I able to separate this into multiple rows? in a new sheet? Desired Result -
I would like to parse out this data by creating a listing with a row for each person, for each project they appear on, for each month. I think this would only give me the groupings anyways, but this doesnt seem to even get me started - it popped up then people have disappeared.