0

Functions in Google Sheets get hard to understand because they reference column numbers rather than column names

=IF(ISBLANK(K63),"", TEXTJOIN("_",TRUE,"VO",$H63,TEXTJOIN("",TRUE,$G63,$E63),K63))

Is there a way to call columns by their row 1 name inside of Google Sheets functions?

player0
  • 124,011
  • 12
  • 67
  • 124
Joe
  • 3,217
  • 3
  • 21
  • 37

1 Answers1

0

you can use Named Ranges and set up your own nicknames:

enter image description here

otherwise:

=IF(K63="",, TEXTJOIN("_", 1, "VO", $H63, TEXTJOIN(, 1, $G63, $E63), K63))
player0
  • 124,011
  • 12
  • 67
  • 124