openoffice calc - One cell content (text) as variable in another cell -
cell a1=alice cell a2=adam love $a$1
how can make cell a1 content variable use in anywhere in worksheet?
you don't have special achieve this; every cell available cell reference [file].[sheet].[col][row]
. thing can't put cell reference plain text cell - you'll have use function or formula instead.
in example, aim concatenate string ("adam love
") , value of cell. so, solution use concatenate()
function in following way:
=concatenate("adam love "; $a$1)
Comments
Post a Comment