Hi all, how to get max value and + 1 for type of product added in single sheet
like
prod value
a 1
a 2
b 1
c 1
c 2
a 3
Hi all, how to get max value and + 1 for type of product added in single sheet
like
prod value
a 1
a 2
b 1
c 1
c 2
a 3
MAX(
SELECT(
TableName[Value],
[Prod] = [_THISROW].[Prod]
)
) + 1