this is my table
https://api.airtable.com/v0/app7MvgC7cKX7Zq7n/student?filterByFormula=class="2"&sex="male"
can you pls hlp me to this url
Sure, simply take the URL to this site and it will URL-encode it for you.
It’s not working for me
This is not enough information for anyone to help you.
First, your formula should be a valid Airtable formula. In Airtable’s formula syntax, the &
operator combines items into a string. To get a valid test of both conditions, you will need to wrap the test in Airtable’s AND()
function. Also, Airtable’s string comparisons are case-sensitive, so “male” should be “MALE” to match the data in your table. The modified formula should be:
AND(class="2", sex="MALE")
Then, as @Bill.French pointed out, you need to properly URL-encode that formula.
First, your formula should be a valid Airtable formula. In Airtable’s formula syntax, the &
operator combines items into a string. To get a valid test of both conditions, you will need to wrap the test in Airtable’s AND()
function. Also, Airtable’s string comparisons are case-sensitive, so “male” should be “MALE” to match the data in your table. The modified formula should be:
AND(class="2", sex="MALE")
Then, as @Bill.French pointed out, you need to properly URL-encode that formula.
Thank you for your feedback
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.