ContributionsMost RecentMost LikesSolutionsHow can i send a aliases which is a table to functioni wan to create a function where i receive a table(aliases string) and find some information in the rows but when i tried access to the table, its a variable. please find bellow an example: main() { findaccount("aliases.form.table"); } function findaccount(table) { n=table.countRow; // methods are not displayed. n=alieases.form.table.countRow; // its working and i can see all methods. }Solved