You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to get the awards a team has won in the past, so I'm accessing team/frc1351/awards and trying to get the award_type value.
when I use "=TBACustom(TO_TEXT(E4))" (E4 is path above), I get the full JSON file, but "=TBACustom(TO_TEXT(E4),"award_type")" produces a blank/empty cell.
Am I doing something wrong?
edit: =TBACustom(TO_TEXT(E4), "0", "award_type") works, but =TBACustom(TO_TEXT(E4), "0", "award_type","1","award_type") doesn't
The text was updated successfully, but these errors were encountered:
https://www.thebluealliance.com/api/v3/team/frc1351/awards returns a JSON array, so you first must select which index in the array you're attempting to access, such as =TBACustom(TO_TEXT(E4),0,"award_type"). If this still doesn't work, let me know.
I'm trying to get the awards a team has won in the past, so I'm accessing team/frc1351/awards and trying to get the award_type value.
when I use "=TBACustom(TO_TEXT(E4))" (E4 is path above), I get the full JSON file, but "=TBACustom(TO_TEXT(E4),"award_type")" produces a blank/empty cell.
Am I doing something wrong?
edit: =TBACustom(TO_TEXT(E4), "0", "award_type") works, but =TBACustom(TO_TEXT(E4), "0", "award_type","1","award_type") doesn't
The text was updated successfully, but these errors were encountered: