A code snippet is useful.
Start with the spreadsheet section below
$BR
\{
begintable(9) .
row( " ","A", "B", "C", "D", "E","F", "G" ) .
row("1", "1" , "6", "11", "16", "", "", '') .
row("2", "2" , "7", "12", "17", B2, "", $popup1->menu()) .
row("3", "3" , "8", "13", "18", "=B$2", "", $popup2->menu()) .
row("4", "4" , "9", "14", "19", "=$B2", "", $popup3->menu()) .
row("5", "5" , "10", "15", "20", "=$B$2", "", $popup4->menu()) .
endtable();
\}
I use "=B$2" where I want to actually see =B$2, since that will be an Excel entry.
I have tried "B".$DOLLAR."2" and "B$DOLLAR2". Neither work.