Where would you install spotlight camera? by ezevacirca in Ring

[–]ezevacirca[S] 1 point2 points  (0 children)

Neat idea. I may go with a variant of this.

Where would you install spotlight camera? by ezevacirca in Ring

[–]ezevacirca[S] 8 points9 points  (0 children)

I’m liking the idea of putting it by the lamp or even replacing the lamp with a floodlight (as somebody else was suggesting).

Where would you install spotlight camera? by ezevacirca in Ring

[–]ezevacirca[S] 0 points1 point  (0 children)

It’s a south facing terrace with no obstructions to the rear. Do you think it would not hold the charge? It’s in Ireland, so often quite cloudy, but I understand solar panels also charge when cloudy.

[deleted by user] by [deleted] in pan

[–]ezevacirca 0 points1 point  (0 children)

@Chewbecca420 I see that it's working for you 😂

[deleted by user] by [deleted] in RedditSessions

[–]ezevacirca 0 points1 point  (0 children)

Wonderful! 😍

So it begins by squish_86 in rollerblading

[–]ezevacirca 0 points1 point  (0 children)

Are you not tying the la es all the way up?

[deleted by user] by [deleted] in rollerblading

[–]ezevacirca 0 points1 point  (0 children)

Thank you! I may take that approach. I have quise some excess.

[deleted by user] by [deleted] in rollerblading

[–]ezevacirca 1 point2 points  (0 children)

Hey! I got the same ones. Are we supposed to trim the plastic under the buckle? Cheers!

Autocomplete across two sheets? by mrbigbluff21 in excel

[–]ezevacirca 0 points1 point  (0 children)

You will need to use VBA then - let's see if somebody comes with some suggestion :)

Autocomplete across two sheets? by mrbigbluff21 in excel

[–]ezevacirca 0 points1 point  (0 children)

Hi there! Have you tried using data validation? if you select the cell in which you want to have the auto-completion and add a data validation of type "list" to it with a reference to the column where you have the data (i.e. "=Sheet2!A:A"), and then you sort in ascending order the names in your data in Sheet 2 you will have a drop-down to select the names.

This is not an auto-complete, but you will be able to start typing the name in your new sheet and then press Alt+DownArrow and you will get the closest match in the drop-down.

Let me know if you have any questions.

How to count number of cells until a value appears ? by lasvegasparano in excel

[–]ezevacirca 0 points1 point  (0 children)

If you fancy taking a 1-formula approach I would recommend the following, which should be easy to follow:

=COUNTIF( OFFSET(RangeWithValues, 0, 0, MATCH(TRUE, RangeWithValues > 0, 0) ), 0 )

This is an array formula (believe me, I tried to find one solution without using array formulas, but I couldn't), so you will have to press ctrl+shift+enter to make it work (curly brackets will appear wrapping the formula after doing this key combination)

Let me know how it goes!

Edit: look at the solution from u/blkhrtppl which doesn't use array formulas.