Reputation: 281
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
Reputation: 29982
you can try:
=ARRAYFORMULA(IF(ROW(A3:A10),C1))
OR
=INDEX(SEQUENCE(ROWS(A3:A10),1,1,0)*C1)
Upvotes: 1