I am building an app based on an existing data warehouse. This means that tables are divided into dimension and fact tables.
I am successful in embedding dimension logic in the fact table by using a Lookup function. This means that I can create a view that use data from table 1:dim_product (columns: (1)Product name, (2)product id) and combine it with facts from table 2:fact_sales (Columns(1)Unitprice, (2)lineamount, (3)quantity).
Now, I will very much like to show this view in a gallery in a Canvas app.
Is there a way I can implement a view in a gallery?
Picture shows structure of the tables and relations