diff --git a/CHANGELOG.md b/CHANGELOG.md
index 33083188666c9b3f2f3ab26d01b0bb1e5d96094a..a40253d33e260dd73504742167571cac7624fdf0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -34,6 +34,8 @@ release.
 -->
 
 ## [Unreleased]
+### Fixed
+- Fixed a bug in which prefixes and suffixes were not properly prepended/appended to point_id [#213](https://github.com/DOI-USGS/plio/issues/213)
 
 # [1.6.0]()
 
diff --git a/plio/io/io_controlnetwork.py b/plio/io/io_controlnetwork.py
index 18f44ca9a41210be99297e1ab6ead1f12b413d72..1fe2b03372f1851eb6241e1f29d408b333ed936c 100644
--- a/plio/io/io_controlnetwork.py
+++ b/plio/io/io_controlnetwork.py
@@ -351,6 +351,8 @@ class IsisStore(object):
                 # Un-mangle common attribute names between points and measures
                 df_attr = self.point_field_map.get(attr, attr)
                 if df_attr in g.columns:
+                    if df_attr == 'id':
+                        continue
                     if df_attr == 'pointLog':
                         # Currently pointLog is not supported.
                         warnings.warn('The pointLog field is currently unsupported. Any pointLog data will not be saved.')