Anybody has an idea what this custom table is used for and what is the meaning of this column in particular? Documentation is silent about it and the info on the Net is scarce.
I'm trying to do the same with my InstallShield project. Have you been successful figuring out how to generate the values in FilterProperty column in ISComponentExtended table?
Many thanks!
Charles
Updates:
The FilterProperty is just a string of GUID with all "-" replaced with "_", beginning with a "_" and ending with "_FILTER". I wrote a simple tool to import my files into the project and the project compiles fine.
Related
I have a requirement in Talend to read two columns from an xlsx file, but the problem is that one of the columns that I need is a measure whose value is supplied by another excel through a formula. So the Talend metadata is picking up the formula instead of the corresponding value. The Talend environment is hosted in Unix.
Is there any way to work around this without making any change in the input excel?
Any help would be appreciated.
The basic Talend components are fairly limited when it comes to dealing with Excel files.
I found it way better to use the components tFileExcel-Components by Jan Lolling : link to the latest version (30/01/2019).
One of the advantages of theses components over the classic Talend ones is that when reading a formula, the component will try to interpret it*.
*If the formula references another sheet or another file it won't work.
I have some data in excel file. Now I need to find their significance value which is not possible with excel. It is only possible with PSPP. But when I import my excel file (after converting to csv file) to pspp it is making hell lot of problems specially with variable names.
Could anyone please tell me some easy solutions?
Excel to PSPP: Make sure your excel file is prepared:
Red boxes in the import-process of the cvs-file indicate problems in the rows, like words added in what otherwise looks like a variable with numeric values.
The variable names must not be too long so fix that first, it works like a very old version of SPSS in this respect.
Then look carefully at the steps when importing.
Choose the second row to be the first (as the first row is variable names, and not a case).
Then click the box for choosing the top row as variable names.
It is less smooth than SPSS in the initial procedure, but so fantastic with a free alternative to the SPSS.
When the dataset is ready, I found it worked well to do the same analyzes as in SPSS.
I suppose your problem is solved a long time ago, but maybe someone else may benefit from this.
A site for sharing information about the PSPP would be great...
One should first convert excel file into CSV (maybe through Apple Mac software Number) and then import the converted into PSPP software...easy
I need to use XML SDK to create an Excel file. I have done it before with XML SDK but not sure how to dynamically create rows based on the data.
As such, I have the header and footer which are static. For the body, not sure how to dynamically add rows.
Does anybody have a link to where I can understand this further or some sample code.
I am using this with c# by the way.
Thank you in advance.
You have to keep track of row id's and the update row id's for all the rows after the rows that are inserted dynamically. You'll find yourself writing a library to model and write everything. Instead of reinventing the wheel, if it is possible how about using a third party library that has been developed to eliminate this headache, such as ClosedXML http://closedxml.codeplex.com/ ?
Good day !
I need to do the export versions of the log data item in the excel.
This solution I unfortunately cannot use because I'm from Russia, and the solution only supports the Latin alphabet.
so I have the most to learn to extract data from the version history for a single item list.
please help. how is this done?
While I haven't found a clean way of doing this, I have a partial workaround.
Use the Export to Excel option in the List section of the ribbon (make sure the list view you export includes a modified column - thanks T6J2E5).
Save the owssvr.iqy file and open with notepad
Copy just the URL from the file and paste it back into your browser, adding "&IncludeVersions=TRUE"
Save the XML file and open in Excel (or your favorite XML viewer), selecting the "As an XML table" open option.
You'll have to delete the first few columns and rows as they contain the schema data but other than that you should have all the version history (I suggest you add the Version column to the view). You can sort by the Modified column to get a chronological change log of the entire list.
FYI "IncludeVersions=TRUE" should be before the List ID for anyone else that needs this.
spurl/_vti_bin/owssvr.dll?XMLDATA=1&IncludeVersions=TRUE&List={ListID}&View={VIEWID}&RowLimit=0&RootFolder=name
I am facing Error after doing the same that semicolon is missing. how to resolve it.
I have an Excel pivot table which is dynamically generated by a third party program. One of the fields brought in is of type text, but contains a number.
I have tried setting calculated field = VALUE('Field Name') but it always returns zero.
Not sure if this is the best forum for this question, but none of the other SE sites seemed appropriate. Thanks so much!
Update - I am using Excel 2010
You need to state which version of Excel you're using, but assuming it's a fairly recent version......
I'm not sure if your post is to be taken literally, but Field Name (with a space) is probably not a valid name. Try calling it Field_Name. After that, make sure a non-zero number is at location Field_Name.
If the above is followed, =VALUE(Field_Name) ....no quotes....should work (I'm staring at it right now on my machine with Excel 2007). Any non-numeric value gives #VALUE!.