Ask Your Question
3

How can multiple array formulas be combined in golf conversions while maintaining a neat output?

asked 2023-07-17 19:57:28 +0000

huitzilopochtli gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2023-07-17 20:18:01 +0000

qstack gravatar image

One way to combine multiple array formulas while maintaining a neat output in golf conversions is to use the IF function along with the CONCATENATE function.

For example, suppose we want to convert golf scores from their numeric format (e.g. 72) to their verbal format (e.g. "even par"). We can use the following array formula:

=IF(A1:A10<72,"+",IF(A1:A10>72,"-",""))&IF(A1:A10=72,"even par",IF(A1:A10<72,"under "&ABS(A1:A10-72),"over "&ABS(A1:A10-72)&" par"))

This formula combines three array formulas: one for determining whether the score is above, below, or equal to par, one for determining the absolute value of the difference between the score and par, and one for concatenating the appropriate strings to form the final output. The IF function allows us to nest these formulas within each other, while the CONCATENATE function lets us combine multiple strings into one output cell.

The result of this formula will be a neatly formatted table of golf scores, with each score converted to its verbal format.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-07-17 19:57:28 +0000

Seen: 16 times

Last updated: Jul 17 '23