Forum Discussion
ak77
2 years agoPost Patron
Table data in UPPER case
Hi Gurus,
need a help if anyone came across this case.please check.
i have a table with huge dataset and columns called O_Asset Class, portfolio override coming from a sql table. i have a switch statment which has a logic
All the cases are working fine, but in one case. the data is getting to UPPER case(TOTAL INFRASTRUCTURE . Does anyone have any idea why this UPPER case is happening?
These 2 columns are from DB
Below is the Switch statment result:
Switch Asset/Sub-Class Benchmark = SWITCH (
TRUE,
(NOT(CONTAINSSTRING(Client_Returns_Data[O_Asset/Sub-Class Benchmark],"Benchmark")) && (NOT(CONTAINSSTRING(Client_Returns_Data[O_Asset/Sub-Class Benchmark],"Excess"))) && LEN(Client_Returns_Data[Portfolio_Node_Name_Override])=0),Client_Returns_Data[O_Asset/Sub-Class Benchmark], (NOT(CONTAINSSTRING(Client_Returns_Data[O_Asset/Sub-Class Benchmark],"Benchmark")) && (NOT(CONTAINSSTRING(Client_Returns_Data[O_Asset/Sub-Class Benchmark],"Excess"))) && LEN(Client_Returns_Data[Portfolio_Node_Name_Override])>0),Client_Returns_Data[Portfolio_Node_Name_Override],
Client_Returns_Data[O_Asset/Sub-Class Benchmark]
)
Sounds really wierd