Hi shooose,
Add Below filter to your aggregate
If(
TimeDropdown = IntegerToIdentifier(3)
Or TimeDropdown = IntegerToIdentifier(4)
Or TimeDropdown = IntegerToIdentifier(1)
Or TimeDropdown = IntegerToIdentifier(2)
,true,
TextToDateTime(StartOfWeek) >= AddMonths(CurrDate(), -12)
)
And
If(
TimeDropdown = IntegerToIdentifier(3),
TextToDateTime(StartOfWeek) > AddMonths(CurrDate(), -1),
True)
And
If(
TimeDropdown = IntegerToIdentifier(1),
TextToDateTime(StartOfWeek) > AddMonths(CurrDate(), -3),
True)
And
If(
TimeDropdown = IntegerToIdentifier(2),
TextToDateTime(StartOfWeek) > AddMonths(CurrDate(), -6),
True)
And
If(
TimeDropdown = IntegerToIdentifier(4),
TextToDateTime(StartOfWeek) > AddMonths(CurrDate(), -12),
True)
Thanks