How to save formula item in table [message #168210] |
Wed, 19 April 2006 05:28 |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
i want to save formula item in table
i created a table
kgs1 number (6)
kgs2 number (6)
on the form i create a block in this block I also add 2 item temp1 (no database) & temp2 (no database) with KGS1 & kgs2
now i write formula in temp1 & temp2 both are formula items.
Calclation mode is formula.
now I want that temp1 save as kgs1 and temp2 as kgs2.
Kamran
|
|
|
|
Re: How to save formula item in table [message #168236 is a reply to message #168218] |
Wed, 19 April 2006 06:54 |
kamran.it
Messages: 265 Registered: September 2005 Location: Karachi
|
Senior Member |
|
|
1.
Create table temp
kgs1 number(1),
kgs2 number(2));
2.
create a form and block temp
in this block are 4 items KGS1,KGS2 and TEMP1,TEMP2 not a database item.
3. changed property of TEMP1
Calculation mode = Formula
formula = :temp1*temp2
temp1 and temp2 can not save in table
now how I save KGS1 as temp1
|
|
|
|
|