Hi,
I wanna ask if my logic can be done. So there’s a variable called maturity date. Each customer has their own maturity date, I wanna month + 1 starting from last month and get the longest maturity date.
For example :
Query result is :
Customer Name | Maturity Date
Customer A : 2026 - 07
Customer B : 2025 - 08
Customer C : 2028 - 01
I’m gonna use sort data table, so sort data table desc (will this get the maturity date of customer C which is Jan 2028?)
If (month-1 <= maturity date)
{
Month + 1
}
so the expected output (in columns not in rows) will be :
or are there any simple thing I can do? Thanks !