rogster001
New Member
- Joined
- Jun 17, 2010
- Messages
- 45
Hi all,
I have a range of cells that at present are populated with a transpose array, that simple pulls data from another worksheet in the same file, so i have the formula:
This works fine.
However we would like to have the values that are ' 0 ' show as a small text string " n/a " for example.
Can we combine the transpose() into a larger function description that would do something like the following pseudoCode:
I have little idea how to build up formula descriptions in excel, apart from very simple combinations of things, but i am a fluent C++ coder so hopefully will be able to grasp any replies!
Many thanks for any info.
I have a range of cells that at present are populated with a transpose array, that simple pulls data from another worksheet in the same file, so i have the formula:
Code:
{=TRANSPOSE(NEall!C30:BB30)}
This works fine.
However we would like to have the values that are ' 0 ' show as a small text string " n/a " for example.
Can we combine the transpose() into a larger function description that would do something like the following pseudoCode:
Code:
{ TRANSPOSE(NEall!30:BB30)
if(cellVal == 0)
{
print "n\a";
}
}
I have little idea how to build up formula descriptions in excel, apart from very simple combinations of things, but i am a fluent C++ coder so hopefully will be able to grasp any replies!
Many thanks for any info.