Graphics

 View Only
  • 1.  <%takeid% - 10> has any one tried using equations with Relid/Takeid

    Posted 04-08-2018 01:54
    The manual says you can use equations with %takeid%. For example subtracting 10 from the takeid " ".

    I have had success with %relid% returning "1" if the group is 100 and take item is 101

    Now I need %relid% to return 1 if the take id is something like 111 or 121.

    I have tried using %relid% - 10 -----> 111 - 10 -100 = 1
    but this does not seem to work.

    Any Ideas?


  • 2.  RE: <%takeid% - 10> has any one tried using equations with Relid/Takeid

    Posted 04-09-2018 09:34
    hi,
    equation works . the result has to be greater than 0 and you need to put your equation between < and > signs.

    in your configuration , if you set the Row property of your datalinq to it will work for takeid > 110 .

    if you want takeid 111 or 121 to have a row value of 1 , you can use the modulo operator.

    try with : < (%takeid% - 1) mod 10 + 1 > [FONT=arial]in your row property.[/FONT]

    #XPression


  • 3.  RE: <%takeid% - 10> has any one tried using equations with Relid/Takeid

    Posted 04-10-2018 09:21

    I don't know which is the minimal version to make it works.
    I've tested with version 6.5 .

    See screenshot :


    I used a datalinq connected to excel file with column "name" that contains "Player 1" for row 1, "player 2" for row 2, etc....
    The data is refreshed when you select the take item in the sequencer.

    "Row" property is set to %MyKey% (it's the datalinq Key with value )
    You can also directly set "Row" property to if you don't want to use datalinq key


    #XPression