This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| PROPERTIESCODEGENERATOR = LAMBDA(AllVariableDeclarationCode,[IsOnlyGetter],LET( | |
| AllPropertyCode, MAP(AllVariableDeclarationCode,LAMBDA(CurrentVariableDeclaration,PROPERTYCODEGENERATOR(CurrentVariableDeclaration,IsOnlyGetter))), | |
| Result,REDUCE("",AllPropertyCode,LAMBDA(FinalCode,CurrentPropertyCode,FinalCode & CHAR(10) & CHAR(10) & CurrentPropertyCode)), | |
| Result | |
| ) | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*Count of occurence and SumIfs From two different Column | |
| @Author: Md.Ismail Hosen | |
| @Email: 1997ismail.hosen@gmail.com | |
| @Param: NameData : This is the column which has header text | |
| @Param: ValueData : This is the column from which we need to SumIf | |
| */ | |
| CountAndSumReport=LAMBDA(NameData,ValueData, | |
| LET( | |
| UniqueFirstData,UNIQUE(NameData), | |
| CHOOSE({1,2,3},UniqueFirstData,COUNTIF(NameData,UniqueFirstData),SUMIF(NameData,UniqueFirstData,ValueData)) |
NewerOlder