Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

Can I print a list of the Variables in the Variables Pod?

New Here ,
Sep 05, 2014 Sep 05, 2014

I have about 125 variables and I want to list them on paper or a spreadsheet or whatever so I can organize them before I start modifying what's there.

How to do that?

Thanks

304
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Sep 05, 2014 Sep 05, 2014

Unfortunately not.

If you save as MIF, then you can open the file in a text editor and extract the Variable catalog. The data will look like:

<VariableFormats

<VariableFormat

    <VariableName `Page Count'>

    <VariableDef `<$lastpagenum\>'>

  > # end of VariableFormat

<VariableFormat

    <VariableName `Current Date (Long)'>

    <VariableDef `<$monthname\> <$daynum\>, <$year\>'>

> # end of VariableFormat

...

... additional variable definitions here

...

> # end of VariableFormats

You can manipulate this

...
Translate
LEGEND ,
Sep 05, 2014 Sep 05, 2014

Unfortunately not.

If you save as MIF, then you can open the file in a text editor and extract the Variable catalog. The data will look like:

<VariableFormats

<VariableFormat

    <VariableName `Page Count'>

    <VariableDef `<$lastpagenum\>'>

  > # end of VariableFormat

<VariableFormat

    <VariableName `Current Date (Long)'>

    <VariableDef `<$monthname\> <$daynum\>, <$year\>'>

> # end of VariableFormat

...

... additional variable definitions here

...

> # end of VariableFormats

You can manipulate this in a text editor to get the variable name and definition into a csv format suitable for importing into a spreadsheet.

You can also create a suitable routine in the spreadsheet to output your modified variables back into MIF format in order to re-import directly into FM files. Check the MIF Reference manual for the full syntax required to make a simple MIF snippet file.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Sep 05, 2014 Sep 05, 2014
LATEST

Arnis, You are the Man. -Bruce

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines