Re: single output cell from running cell in notebook
- To: mathgroup at smc.vnet.net
 - Subject: [mg75541] Re: single output cell from running cell in notebook
 - From: dh <dh at metrohm.ch>
 - Date: Fri, 4 May 2007 04:20:52 -0400 (EDT)
 - References: <f1c4ch$h2e$1@smc.vnet.net>
 
Hi,
this will print i=1 to 100 in one single cell, overwriting previous output:
Do[
   SelectionMove[InputNotebook[],All,Cell]
       NotebookWrite[InputNotebook[],i];
,{i,100}]
hope this helps, Daniel
ikantian at yahoo.com wrote:
> this is a little obscure, for sure, but is there a way to restrict the
> output from a single running cell in a notebook to just one output
> cell, i.e with each new output cell replacing the old? thx.
> 
>