IBAN.Countries
--------------

Queries list of country codes.

| Component | Version | macOS | Windows | Linux | Server | iOS SDK |
|---|---|---|---|---|---|---|
| [IBAN](component_IBAN.md) | [11.1](newinversion111.md) | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes | ✅ Yes |

MBS( "IBAN.Countries" ) ### Parameters

none

### Result

Returns list or error.

### Description

Queries list of country codes.  
The plugin includes a list of over 100 country codes.  
### Examples

Query examples for each country:

 While(   
\[   
 names = "";   
 // query list of countries  
 list = MBS ( "IBAN.Countries" );   
 count = ValueCount(list);   
 index = 1  
\] ;   
 index ≤ count ;   
\[   
 Country = GetValue(list; index);   
 // query example for each country  
 example = MBS ( "[IBAN.Example](IBANExample.md)"; Country );   
 names = names &amp; Country &amp; " -&gt; " &amp; example &amp; ¶;   
 index = index + 1   
\] ;   
// return all the names  
names )  
### See also

- [IBAN.Example](IBANExample.md)

### Blog Entries

- [MBS Plugin Advent calendar: 9 - IBAN](https://www.mbsplugins.de/archive/2023-12-09/MBS_Plugin_Advent_calendar_9_-/monkeybreadsoftware_blog_filemaker)
- [MBS FileMaker Plugin 11.1](https://www.mbsplugins.de/archive/2021-03-16/MBS_FileMaker_Plugin_111/monkeybreadsoftware_blog_filemaker)

This function checks for a license.

Created 26th February 2021 , last changed 14th June 2022

  
[IBAN.Compact](IBANCompact.md) - [IBAN.Example](IBANExample.md)

[HTML Version](IBANCountries.shtml)