I am so used to pinging a .csv using a Microsoft Text Driver and using SQL to filter out things I do not want. However, as you are aware, Microsoft doesn't have a 64-bit "Microsoft Text Driver." In another post of mine, we went off topic about this very issue but I wanted to create a new topic specifically for this.
We had some IBM gurus out to our place last week and they were telling me to put this sort of code on the "Data" subtab of the "Advanced" tab:
If(vMPN@= 'CT%');
ItemSkip;
EndIf;
What I am doing is creating a dimension (MPN), and then also populating various attributes from a .csv. An example of what I am pulling from is below in "Diagram A"
vMPN = Dimension
vProductFamily = Attribute of vMPN
vDensity = Attribute of vMPN
vSegment = Attribute of vMPN
I ONLY want to pull in the "vMPN" that have a "vProductFamily" of "MCP"
If I were writing SQL against it, I would do this:
SELECT
vMPN ,
vProductFamily ,
vDensity ,
vSegment
FROM
datasource
WHERE
vProductFamily = 'MCP'
But, I am struggling with how to do this on the 'Advanced' tab

This is such a core way of doing thing (SQL against .csv) that this is new to do it this way in TM1 (I am very fluent with Cognos Analyst, not TM1 - yet)

Thanks a lot (as always!!)