Hello Gliders, I’m building a plumber craft app.
In the app, I’d like to display each sizes of my plumber depending on clothing model (craft pants, craft shirt, craft shoes…). The difficulty is that size units are obviously not the same depending on top vs. bottom vs. shoes. I’m stuck…
I recommend restructuring the data in your Sizes table so you only have two columns. A Type column (pants, shirt, shoes), and a Size column (XL, 28, 37.5).
Create a Type column in your clothing table, then build a relation linking Type to the Type in the Sizes table. Then add a Lookup, or Joined List or whatever else you need , which refers to the relation.
So you want a place to store each plumber’s top size, bottom size and shoe size? If that’s the case, you can add 3 columns and point 3 choice components to them.
Without reply so far, I made something that quite works but it’s pretty bad and not exactly what I want.
Here in this message what I made, and then in a second message, what I want :
Actually, what I want seems quite simple. I would like to display a Collection into user profile that show user’s size and quantity depending on clothing model, like in this screenshot :
Does quantity mean inventory? Meaning the number you have in stock for each clothing name, type and size? Or does quantity mean the number of clothing pieces that the user has on their possession?
No specific user column. Collection should show clothing collection with size and quantity for the user profil you are in, and everyone can see.
In other words, I’m User A. I go to User B profile and I see User B’s clothing collection. Then, I go to User C profile and I see User C’s clothing collection.
I have a fuzzy idea how to do : maybe an unique Row ID somewhere, maybe creating relation between clothing model and user… but I dont know how to execute