Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 8/11/2005(UTC) Posts: 104
|
Hi,
I understand there are no interface to the drawing tools
So trying another method of creating a ladder of percentage increases
Day1 := Input("Day",1,31,28);
Month1 := Input("Month",1,12,7);
Year1 := Input("Year",1900,2400,2010);
start:=((DayOfMonth()=Day1 AND Month() = Month1 AND Year()=Year1));
L0:=ValueWhen(1,start,LOW);
Steps:= Input("Number of Steps", 1, 12, 1) ;
L1:=L0*1.125;
L2:=L0*1.25;
L3:=L0*1.333;
L4:=L0*1.375;
L5:=L0*1.5;
L6:=L0*1.625;
L7:=L0*1.75;
L8:=L0*1.875;
L9:=L0*2;
L10:=L0*2.25;
L0;
If(Steps>0,L1,L0);
If(Steps>1,L2,L0);
If(Steps>2,L3,L0);
If(Steps>3,L4,L0);
If(Steps>4,L5,L0);
If(Steps>5,L6,L0);
If(Steps>6,L7,L0);
If(Steps>7,L8,L0);
If(Steps>8,L9,L0);
If(Steps>9,L10,L0);
-----------------------------------------------------------
|