Max#

Description:

Returns the max value for the select column.

Function:

Max(table = string, col = string, new_col = string)

Parameters:

  • Table: Table name on which to perform function

  • Column: Column to perform Max

  • New Column Name: Name for new column

Example:

Max(table = Budget, col = "Actual", new_col = "Max Amount")
Before#

Date

Geo

Business

Plan

Actual

8/1/2024

Asia-Pacific

Energy

800

750

7/1/2024

Middle East & A

Healthcare

1200

900

5/1/2024

Latin America

Manufacturing

900

1050

9/1/2024

Asia-Pacific

Technology

1500

1300

11/1/2024

Latin America

Energy

2000

1800

After#

Date

Geo

Business

Plan

Actual | Max

8/1/2024

Asia-Pacific

Energy

800

750

1800

7/1/2024

Middle East & A

Healthcare

1200

900

1800

5/1/2024

Latin America

Manufacturing

900

1050

1800

9/1/2024

Asia-Pacific

Technology

1500

1300

1800

11/1/2024

Latin America

Energy

2000

1800

1800