Newbie
Newbie

Reputation: 281

Google Sheets: How to enter same text across cells in a column with arrayformula?

Instead of copy/paste same number across cells, I'm trying to utilize arrayformula in google sheets, if it's possible. These didn't work, getting an error message saying "Circular dependency detected. To resolve with iterative calculation, see File > Settings.".

Any suggestion? Thank you!

Upvotes: 0

Views: 500

Answers (1)

rockinfreakshow
rockinfreakshow

Reputation: 29982

you can try:

=ARRAYFORMULA(IF(ROW(A3:A10),C1))

OR

=INDEX(SEQUENCE(ROWS(A3:A10),1,1,0)*C1)

enter image description here

Upvotes: 1

Related Questions