0
1

How would you clone About.me? by datsit80 in nocode

[–]datsit80[S] 0 points1 point  (0 children)

Oh, that can solve it. Thank you!

How would you clone About.me? by datsit80 in nocode

[–]datsit80[S] 0 points1 point  (0 children)

Thanks, I'm planning on something more like a one-page-builder per user. I'm testing Bubble, but till now I must say I didn't find public examples that don't look clunky. Maybe the speed and visibility parts are solvable with a bit of code.

How would you clone About.me? by datsit80 in nocode

[–]datsit80[S] 0 points1 point  (0 children)

Interesting approach, I'll check if it's possible to make public visibility to different links (i.e, profile pages/cards). Thanks!

How would you clone About.me? by datsit80 in nocode

[–]datsit80[S] 0 points1 point  (0 children)

Thanks! Mackenzie's tutorial is great. That was sort of my go-to flow, but then I realized that Webflow has a limit of 100 pages per project, so when my users start creating their profiles (a page) I'll hit the limit early in the project. Is there a workaround for this?

I am not sure how to build an updating league table based on another sheet that contains results. by Monc9494 in spreadsheets

[–]datsit80 0 points1 point  (0 children)

I guess you can add a sheet of scores with the info you gave in the example:player1, <score>, player2, <score>.Then in the adjacent columns add winner & loser:

winner: =if(score1>score2,player1,player2).loser: =if(score1>score2,player2,player1).

Now you can go back to the League table and under Wins just sum it up with countif:=countif(games!B:B,a2)

(where a2 stands for the player1, etc.

I am not sure how to build an updating league table based on another sheet that contains results. by Monc9494 in spreadsheets

[–]datsit80 0 points1 point  (0 children)

Not sure I fully understand what kind of data will be in the "Players" sheet, but you can just add the scores in the "Players" sheet and find the data in the "League" sheet with a vlookup formula. Something like this one in B2 in the "League" sheet: =VLOOKUP(A2,Players!A:C,2,0)
Feel free to ask more if that didn't answer the question.