===== Fill Data ===== {{keywords>Offtoa, Fill Data}} This pop-up saves you data entry time by enabling you to replicate data from this field to all the fields to the right. You may perform this action in two ways: * **Growth**. The step value you enter with the Growth box checked will be used as a multiplier to create a new value for each successive entry in the row on the main screen. Here are some examples: * **Step Value 1**. All entries to the right will be identical to the current entry. Thus, if you enter 4 on the main screen, and then enter Growth with a step value of 1 on the pop-up, echo $conf['comp_name']; will enter the value 4 in all fields on the main screen to the right of the 4 you entered. * **Step Value 1.25**. All entries to the right will be 25% higher than the entries to their left. Thus, if you enter 4 on the main screen, and then enter Growth with a step value of 1.25 on the pop-up, echo $conf['comp_name']; will enter the value 5 in the next field to the right, 6.25 in the next field, 7.81 in the next field, and so on. * **Step Value 2**. All entries to the right will be double the entries to their left. Thus, if you enter 4 on the main screen, and then enter Growth with a step value of 2 on the pop-up, echo $conf['comp_name']; will enter the values 8, 16, 32, 64, and so on, in the subsequent fields. * **Linear**. The step value you enter with the Linear box checked will be added to each successive entry in the row on the main screen. Here are some examples: * **Step Value 0**. All entries to the right will be identical to the current entry. Thus, if you enter 4 on the main screen, and then enter Linear with a step value of 0 on the pop-up, echo $conf['comp_name']; will enter the value 4 in all fields on the main screen to the right of the 4 you entered. * **Step Value 1**. All entries to the right will be 1 higher than the entries to their left. Thus, if you enter 4 on the main screen, and then enter Linear with a step value of 1 on the pop-up, echo $conf['comp_name']; will enter the values 5, 6, 7, 8, and so on, in the subsequent fields. * **Step Value 10**. All entries to the right will be 10 higher than the entries to their left. Thus, if you enter 4 on the main screen, and then enter Linear with a step value of 10 on the pop-up, echo $conf['comp_name']; will enter the values 14, 24, 34, 44, and so on, in the subsequent fields.