question

Noelio avatar image
0 Likes"
Noelio asked Jeanette F commented

tHIS MODEL IS NOT WORKING AND I DON´T KNOW WHY, PLEASE HELP

Hey guys:

I´ve created this model but it´s not running, I´ve created the labels but I don´t know why the model is not grabbing the proper labels.


I hope someone can help me

4-1 GLAZING process modelling with global tables - copia.fsm


FlexSim 24.1.0
global tablescycle timeinvalid row
· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Joerg Vogel avatar image
0 Likes"
Joerg Vogel answered Joerg Vogel edited

A table cell is addressed by row number and column number. You can replace those numbers by their header string values. Global Table cell row 23 and column 1 can you access by

  1. Table("Cycle time")["23"]["Processor1"]

As you see in my comment, you can even evaluate a row number by a key value of a column.

Table("Cycle time")[Table("Cycle time").getRowByKey(item.MyLabel1,"MyLabel1")][current.Station]

wherein a row number is:

  1. Table("Cycle time").getRowByKey(item.MyLabel1,"MyLabel1")

and a column header name is:

  1. current.Station

But you pass still a rownumber to return a value by global table lookup for a process time.

· 2
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.