Real-time and accumulating cells
Real-time cells
Real-time cells allow you to display data from various sources in real-time. To work with real-time data, create a flow in the flow editor and then bring the data into a cell by using the =* syntax.
To create a real-time cell, type "=*" followed by a function. For example:
=*GET_REALTIME_DATA()
Accumulating cells
Accumulating cells allow you to accumulate data in a frame.
To create an accumulating cell, type "+=" followed by a function. As an example, let's accumulate some random numbers:
In cell A1, use the following formula to return a random number:
=RANDOM()In an empty cell, use the following formula to accumulate the random numbers into a frame:
+={A1}Re-evaluate cell A1 several times by pressing Cmd + Enter.
As you re-evaluate cell A1, the accumulating cell adds random numbers to the frame.