Information Technology Development Cycle Diary
Member rating: No Rating | Words: | Submitted: Thu Jul 11 2002
On the left is an image preview of every page of this document, and below are the first 150 words with formatting removed:
The Diary 19/02/2002 Today I set up the input, process and invoice screen according to the hand drawn plan and the functions and calculations according to "The Workbook" section. I did not set-up any validation checks, macros or cell protection. I simply wanted to see if this section of the system would function correctly. Input Process Problem On the process sheet I had difficulty setting up the 'Discount on spending' cell. I used the formulae: =IF(G21>300,40,G21>200,20,G21>100,10,0) However this formula would not work and error messages came up. After looking at Microsoft help I realised my mistake. After the "Otherwise" comma in the formula another if function has to be used. So the corrected formula is =IF(G21>300,40,IF(G21>200,20,IF(G21>100,10,0))) Invoice Problem If room selection 2 was left blank on the input screen then the invoice looked as follows If there is only one room ordered I wanted the second row of the invoice table to be blank. To do this I added an IF...


