79175496

Date: 2024-11-10 18:42:29
Score: 2
Natty:
Report link

DAX measure is usually an elegant way to address such questions,

Next = 
SELECTCOLUMNS(
    OFFSET( 1, ORDERBY( Orders[OrderDate] ), PARTITIONBY( Orders[Item] ) ),
    Orders[OrderDate]
)

enter image description here

Reasons:
  • Blacklisted phrase (1): enter image description here
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: ThxAlot