vote up 0 vote down star

Is it possible to set a rows height in a formula in Excel?

For Microsoft Office 2003.

flag

68% accept rate

3 Answers

vote up 0 vote down

I don't think so. You would need to use VBA.

See RowHeight property is used to get the Height for an example.

link|flag
Thanks for replying, unfortunately my users want to adjust row heights in formula's. I think you're correct, I was just wondering if someone could prove me wrong. – Bravax May 28 at 7:45
vote up 0 vote down

You'd have to create a UDF to do it.

You could write it in a VBA module attached to the workbook. If you want it to affect the rows the formula is called on, use Application.Caller.RowHeight.

There may be some funky effects depending on how this formula is used. An odd request, but I've seen odder...

link|flag
vote up 0 vote down

You have to use VBA. You'd have to write something into the worksheet_change event to read a particular cell then change the height based on the entry. No way to do it without coding.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.