A
Albert Byun
Basically, what I want to implement is as following:
**********************************************************************
Irms (current) is calculated from a formula and displayed in the following
table.
-----------------------------
| Irms | Requied Width |
-----------------------------
| | |
-----------------------------
Use this Ic value to run down a table and pick out 'Requied Width' that is
sufficient to carry that much Irms value
***********************************************************************
- Example 1 :
if Irms = 4mA
and the data table is
-------------------------
| Irms | Wire Width |
----- -----------------
| 1mA | 1x |
| 3mA | 2x |
| 5mA | 3x |
| 7mA | 4x |
-------------------------
The final table should look like this:
-----------------------------
| Irms | Requied Width |
-----------------------------
| 4 | 3x |
-----------------------------
- Example 2:
if Irms = 6mA
then the final table should look like this
-----------------------------
| Irms | Requied Width |
-----------------------------
| 6 | 4x |
-----------------------------
=>>> I need to implement this just in Excel spreadsheet not using any
external programming such as perl.
Thank you.
**********************************************************************
Irms (current) is calculated from a formula and displayed in the following
table.
-----------------------------
| Irms | Requied Width |
-----------------------------
| | |
-----------------------------
Use this Ic value to run down a table and pick out 'Requied Width' that is
sufficient to carry that much Irms value
***********************************************************************
- Example 1 :
if Irms = 4mA
and the data table is
-------------------------
| Irms | Wire Width |
----- -----------------
| 1mA | 1x |
| 3mA | 2x |
| 5mA | 3x |
| 7mA | 4x |
-------------------------
The final table should look like this:
-----------------------------
| Irms | Requied Width |
-----------------------------
| 4 | 3x |
-----------------------------
- Example 2:
if Irms = 6mA
then the final table should look like this
-----------------------------
| Irms | Requied Width |
-----------------------------
| 6 | 4x |
-----------------------------
=>>> I need to implement this just in Excel spreadsheet not using any
external programming such as perl.
Thank you.