I am new to Google Sheets. I and am trying to make a spreadsheet where column A has a list of words and when I type an x or something in a cell in a different column (lets say column B)it automatically fills with the word contained in column A in the same row. I have tried to use =IF(CELL(not(empty... with different arguments but I really don't know what I am doing. I'm trying to read up on Google Apps Script and figure out a way to write a macro to accomplish this but again, I'm not sure if I need a macro. I would appreciate any help I can get on this.
0
votes
2 Answers
1
votes
0
votes
Here is Google Script unnecessary.
Just use Formula. Here you can put to A1:
=B1
and in A1 will be the same word as in B1. If you need condition, try to A1 set:
="My magic word is: " & IF(ISBLANK(B1),"(nothing)",B1)